aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/dotnet/example_test/MyTest.cs
blob: d5d5d3e5c718798d6f836e98e664531ac5da34f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;

using NUnit.Framework;

using example_lib;

namespace example_test
{
    [TestFixture]
    public class MyTest
    {
        [Test]
        public void MyTest1()
        {
            Assert.That("foo", Is.EqualTo("Foo"));
        }

        [Test]
        public void MyTest2()
        {
            Assert.That("bar", Is.EqualTo("bar"));
        }
    }
}