Add NUnit test chassis and Powershelll test generator scripts

This commit is contained in:
Katy Coe
2019-10-21 00:28:52 +02:00
parent 982b4b168d
commit 5f26b2d6f0
11 changed files with 149268 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
/*
Copyright 2017-2019 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com
All rights reserved.
*/
using System.Text;
namespace Il2CppTests.TestSources
{
internal class Test
{
// A parameter-less method
public void ParameterlessMethod() { }
// Method with value type return type
public int ValueTypeReturnMethod() => 0;
// Method with reference type return type
public StringBuilder ReferenceTypeReturnMethod() => new StringBuilder();
}
}