trying to fix Export
Some checks failed
Create tag and build when new code gets to main / BumpTag (push) Successful in 35s
Create tag and build when new code gets to main / Export (push) Has been cancelled

This commit is contained in:
2026-01-26 08:29:43 +01:00
parent 7323b6e814
commit 64957334de
3 changed files with 41 additions and 41 deletions

View File

@@ -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");
// }
// }