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);
}
}
}