Advertisement
nassss

Untitled

Feb 25th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. [TestMethod]
  2. public void ChangeBugStatusShould()
  3. {
  4. //Arrange
  5. IBug newBug = new Bug("Loshiqt buuuk", "ne sym mnouuu losh", new List<string> { "stepByStep" }, Priority.High, Severity.Critical, BugStatus.Fixed);
  6. BugStatus status = BugStatus.Active;
  7.  
  8. //Act
  9. newBug.ChangeBugStatus(status);
  10.  
  11. //Assert
  12. Assert.AreEqual(status, BugStatus.Active);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement