Guest User

Untitled

a guest
Jun 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public static class LockClass
  2. {
  3. public static object LockObject = new object();
  4. }
  5.  
  6. ...
  7.  
  8. [TestInitialize]
  9. public void TestSetup()
  10. {
  11. Monitor.Enter(LockClass.LockObject);
  12. }
  13.  
  14. [TestCleanup]
  15. public void TestCleanup()
  16. {
  17. Monitor.Exit(LockClass.LockObject);
  18. }
Add Comment
Please, Sign In to add comment