Tests: Add TestRunner configuration

This commit is contained in:
Katy Coe
2021-01-12 00:16:45 +01:00
parent 92451e26ef
commit 68d251926d
2 changed files with 102 additions and 56 deletions

View File

@@ -0,0 +1,21 @@
/*
Copyright 2019-2021 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
All rights reserved.
*/
namespace Il2CppInspector
{
// Configuration options for test runner
// Determines which integration tests to run
public partial class TestRunner
{
public const bool GenerateCS = true;
public const bool GenerateDLL = true;
public const bool GenerateJSON = true;
public const bool GenerateCpp = true;
public const bool GeneratePython = true;
public const bool EnableCompare = true;
}
}