Guest User

Untitled

a guest
Mar 18th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. [Parallelizable(ParallelScope.Children)]
  2. public class DebugParallelTests
  3. {
  4. public static int Total { get; set; }
  5.  
  6. [TestCase(1)]
  7. [TestCase(2)]
  8. [TestCase(3)]
  9. [TestCase(4)]
  10. [TestCase(5)]
  11. [TestCase(6)]
  12. public void AddToTotal(int amountToAdd)
  13. {
  14. Total += amountToAdd;
  15. Assert.True(true);
  16. }
  17. }
Add Comment
Please, Sign In to add comment