-
Notifications
You must be signed in to change notification settings - Fork 0
/
SecondTestClass.cs
48 lines (43 loc) · 1.13 KB
/
SecondTestClass.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using NUnit.Framework;
using TestProject1.Subnamespace;
namespace TestProject1
{
[Parallelizable(scope: ParallelScope.All)]
public class SecondTestClass
{
[Test]
public void Test1()
{
SomeRandomClass1 obj = new SomeRandomClass1();
Assert.AreEqual(0, obj.Num);
}
[Test]
public void Test2()
{
SomeRandomClass1 obj = new SomeRandomClass1();
obj.SomeFunction2();
Assert.AreEqual(0, obj.Num);
}
[Test]
public void Test3()
{
SomeRandomClass1 obj = new SomeRandomClass1();
obj.SomeFunction2();
Assert.AreEqual(0, obj.Num);
}
[Test]
public void Test4()
{
SomeRandomClass1 obj = new SomeRandomClass1();
obj.SomeFunction2();
Assert.AreEqual(0, obj.Num);
}
[Test]
public void Test5()
{
SomeRandomClass1 obj = new SomeRandomClass1();
obj.SomeFunction2();
Assert.AreEqual(0, obj.Num);
}
}
}