Files
MovementTests/tests/ExampleTest.cs
Minimata 51907a1f01
All checks were successful
Create tag and build when new code gets to main / Export (push) Successful in 6m53s
trying to fix Export
2026-01-26 08:41:48 +01:00

28 lines
573 B
C#

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