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
|
// ****************************************************************
// This is free software licensed under the NUnit license. You
// may obtain a copy of the license as well as information regarding
// copyright ownership at http://nunit.org.
// ****************************************************************
using NUnit.Framework;
[TestFixture]
public class NoNamespaceTestFixture
{
public static readonly int Tests = 3;
public static readonly string AssemblyPath = NUnit.Core.AssemblyHelper.GetAssemblyPath(typeof(NoNamespaceTestFixture));
[Test]
public void Test1()
{
}
[Test]
public void Test2()
{
}
[Test]
public void Test3()
{
}
}
|