Created
March 5, 2017 13:36
-
-
Save neuecc/0b9ca544b788453c7a100389311858f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class UnitTestLoader | |
{ | |
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] | |
public static void Register() | |
{ | |
// setup created test class to RegisterAllMethods<T> | |
UnitTest.RegisterAllMethods<SampleGroup>(); | |
// and add other classes | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment