diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-04-19 17:19:32 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-04-19 17:19:32 -0400 |
| commit | c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78 (patch) | |
| tree | ee4d51c7c1d633e11f46453ef1edd3c77c4ef9f7 /Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs | |
| download | Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.tar.gz Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.tar.bz2 Project-Sandbox-c55fba8ab2a1c9d3df65eda4a5a1e957f4aa1f78.zip | |
Inital commit
Diffstat (limited to 'Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs')
| -rw-r--r-- | Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs b/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs new file mode 100644 index 0000000..3a130c5 --- /dev/null +++ b/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs @@ -0,0 +1,58 @@ +using System.Collections.Generic;
+using System.IO;
+using System.Reflection;
+using NUnit;
+using NUnit.Framework.Api;
+using NUnit.Framework.Interfaces;
+using NUnit.Framework.Internal;
+
+namespace UnityEngine.TestTools.NUnitExtensions
+{
+ internal class UnityTestAssemblyBuilder : DefaultTestAssemblyBuilder, IAsyncTestAssemblyBuilder
+ {
+ private readonly string m_ProductName;
+ public UnityTestAssemblyBuilder()
+ {
+ m_ProductName = Application.productName;
+ }
+
+ public ITest Build(Assembly[] assemblies, TestPlatform[] testPlatforms, IDictionary<string, object> options)
+ {
+ var test = BuildAsync(assemblies, testPlatforms, options);
+ while (test.MoveNext())
+ {
+ }
+
+ return test.Current;
+ }
+
+ public IEnumerator<ITest> BuildAsync(Assembly[] assemblies, TestPlatform[] testPlatforms, IDictionary<string, object> options)
+ {
+ var productName = string.Join("_", m_ProductName.Split(Path.GetInvalidFileNameChars()));
+ var suite = new TestSuite(productName);
+ for (var index = 0; index < assemblies.Length; index++)
+ {
+ var assembly = assemblies[index];
+ var platform = testPlatforms[index];
+
+ var assemblySuite = Build(assembly, options) as TestSuite;
+ if (assemblySuite != null && assemblySuite.HasChildren)
+ {
+ assemblySuite.Properties.Set("platform", platform);
+ suite.Add(assemblySuite);
+ }
+
+ yield return null;
+ }
+
+ yield return suite;
+ }
+
+ public static Dictionary<string, object> GetNUnitTestBuilderSettings(TestPlatform testPlatform)
+ {
+ var emptySettings = new Dictionary<string, object>();
+ emptySettings.Add(FrameworkPackageSettings.TestParameters, "platform=" + testPlatform);
+ return emptySettings;
+ }
+ }
+}
|
