trying to fix Export
This commit is contained in:
@@ -1,28 +1,28 @@
|
||||
namespace Movementtests.tests;
|
||||
|
||||
using GdUnit4;
|
||||
using static GdUnit4.Assertions;
|
||||
|
||||
[TestSuite]
|
||||
public class ExampleTest
|
||||
{
|
||||
[Before]
|
||||
public void Setup() {
|
||||
// Setup suite-level shared resources, expensive setup
|
||||
}
|
||||
|
||||
[After]
|
||||
public void Cleanup() {
|
||||
// Cleanup suite-level shared resources, expensive setup
|
||||
}
|
||||
|
||||
[TestCase]
|
||||
public void StringToLower() {
|
||||
AssertString("AbcD".ToLower()).IsEqual("abcd");
|
||||
}
|
||||
|
||||
[TestCase]
|
||||
public void StringToUpper() {
|
||||
AssertString("AbcD".ToUpper()).IsEqual("ABCD");
|
||||
}
|
||||
}
|
||||
// namespace Movementtests.tests;
|
||||
//
|
||||
// using GdUnit4;
|
||||
// using static GdUnit4.Assertions;
|
||||
//
|
||||
// [TestSuite]
|
||||
// public class ExampleTest
|
||||
// {
|
||||
// [Before]
|
||||
// public void Setup() {
|
||||
// // Setup suite-level shared resources, expensive setup
|
||||
// }
|
||||
//
|
||||
// [After]
|
||||
// public void Cleanup() {
|
||||
// // Cleanup suite-level shared resources, expensive setup
|
||||
// }
|
||||
//
|
||||
// [TestCase]
|
||||
// public void StringToLower() {
|
||||
// AssertString("AbcD".ToLower()).IsEqual("abcd");
|
||||
// }
|
||||
//
|
||||
// [TestCase]
|
||||
// public void StringToUpper() {
|
||||
// AssertString("AbcD".ToUpper()).IsEqual("ABCD");
|
||||
// }
|
||||
// }
|
||||
Reference in New Issue
Block a user