Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,49 @@
|
|||
using System;
|
||||
using NUnit.Framework.Interfaces;
|
||||
using UnityEditor.TestTools.TestRunner.Api;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityEditor.TestTools.TestRunner.TestRun
|
||||
{
|
||||
[Serializable]
|
||||
internal class TestJobData
|
||||
{
|
||||
[SerializeField]
|
||||
public string guid;
|
||||
|
||||
[SerializeField]
|
||||
public int taskIndex;
|
||||
|
||||
[SerializeField]
|
||||
public int taskPC;
|
||||
|
||||
[SerializeField]
|
||||
public bool isRunning;
|
||||
|
||||
[SerializeField]
|
||||
public ExecutionSettings executionSettings;
|
||||
|
||||
[SerializeField]
|
||||
public string[] existingFiles;
|
||||
|
||||
[SerializeField]
|
||||
public int undoGroup = -1;
|
||||
|
||||
[SerializeField]
|
||||
public EditModeRunner editModeRunner;
|
||||
|
||||
[NonSerialized]
|
||||
public bool isHandledByRunner;
|
||||
|
||||
public ITest testTree;
|
||||
|
||||
public TestJobData(ExecutionSettings settings)
|
||||
{
|
||||
guid = Guid.NewGuid().ToString();
|
||||
executionSettings = settings;
|
||||
isRunning = false;
|
||||
taskIndex = 0;
|
||||
taskPC = 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue