File size: 619 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace UnityEditor.TestTools.TestRunner.Api.Analytics
{
    internal class RunFinishedData
    {
        public int totalTests;
        public int numPassedTests;
        public int numFailedTests;
        public int numInconclusiveTests;
        public int numSkippedTests;
        public int testModeFilter;
        public bool isAutomated;
        public bool isFromCommandLine;
        public bool isFiltering;
        public string targetPlatform;
        public double totalTestDuration;
        public double totalRunDuration;
        public bool runSynchronously;
        public bool isCustomRunner;
    }
}