SEBWIN-679: Extended unit tests for core library.
This commit is contained in:
parent
817f598d8a
commit
8543c81867
1 changed files with 10 additions and 0 deletions
|
@ -97,5 +97,15 @@ namespace SafeExamBrowser.Core.UnitTests.Operations
|
||||||
|
|
||||||
Assert.AreEqual(3, fired);
|
Assert.AreEqual(3, fired);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[TestMethod]
|
||||||
|
public void MustNotFireActionRequiredEvent()
|
||||||
|
{
|
||||||
|
sut.ActionRequired += (_) => Assert.Fail();
|
||||||
|
|
||||||
|
sut.Perform();
|
||||||
|
sut.Repeat();
|
||||||
|
sut.Revert();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue