mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
13 lines
No EOL
286 B
C#
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");
|
|
}
|
|
}
|
|
} |