Cosmos/source/TestKernel/Tests/NoInit/StringTests.cs
2008-02-27 18:17:59 +00:00

13 lines
No EOL
286 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
namespace TestKernel.Tests.NoInit {
public static class StringTests {
[Test(Name="Whoohoo", TestGroup="Test")]
public static void OurTest() {
// succeeds
throw new Exception("Error");
}
}
}