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 |
#region Using Statements
using Microsoft.VisualStudio.TestTools.UnitTesting;
#endregion
namespace Tasks.TestProject
{
/// <summary>
///This is a test class for PrintTaskOtherTest and is intended
///to contain all PrintTaskOtherTest Unit Tests
///</summary>
[TestClass]
public class PrintTaskOtherTest
{
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext { get; set; }
/// <summary>
///A test for Run
///</summary>
[TestMethod]
public void PrintTaskOtherTest_RunTest()
{
var target = new PrintTaskOther {Active = true, Id = 1, Name = "UnitTestPrintTaskOther"};
target.Run();
}
}
} |