1
// *********************************************************************
2
// Copyright 2007, Andreas Schlapsi
3
// This is free software licensed under the MIT license.
4
// *********************************************************************
7
using NUnitExtension.RowTest;
9
namespace NUnitExtension.RowTest.Tests
11
// The tests in this fixture should appear ordered in the NUnit GUI.
13
public class OrderedTest
16
public void Test1_SomeTest()
18
Assert.AreEqual (1, 1);
24
public void Test2_OtherTest(int argument)
26
Assert.AreEqual (argument, argument);
30
public void Test3_OneMoreTest()
32
Assert.AreEqual (1, 1);