Menu

[r32]: / trunk / UnitTesting / ExampleTest.cs  Maximize  Restore  History

Download this file

22 lines (20 with data), 367 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
namespace NPlot.UnitTesting
{
/// <summary>
/// Example Unit Test
/// </summary>
[TestFixture]
public class ExampleTest
{
// Example Test
[Test]
public void Test1()
{
Assert.AreEqual(1, 1);
}
}
}
MongoDB Logo MongoDB