File size: 1,063 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using UnityEngine;

namespace UnityEditor.TestTools.CodeCoverage
{
    internal class CoverageSettings
    {
        public const string ReportFolderName = "Report";
        public const string ReportHistoryFolderName = "Report-history";
        public const string PackageName = "Code Coverage";

        public string rootFolderPath;
        public string rootFolderName = "CodeCoverage";
        public string resultsPathFromCommandLine;
        public string resultsFileName = "TestCoverageResults";
        public string resultsFileExtension;
        public string resultsFolderSuffix;
        public string resultsFolderPath;
        public string resultsRootFolderPath;
        public string resultsFilePath;
        public string historyPathFromCommandLine;
        public string historyFolderPath;
        public string overrideIncludeAssemblies;
        public bool overrideGenerateHTMLReport = false;
        public bool hasPersistentRunData = true;
        public bool resetCoverageData = true;
        public bool revealReportInFinder = true;
    }
}