MsgPack.TestSummaryReporter.TestSummaryReporter C# (CSharp) Method

TestSummaryReporter() public method

Initializes a new instance of the TestSummaryReporter class.
public TestSummaryReporter ( string testClassName, bool isAllRunMode, Result resultPrefab, GameObject resultVertical ) : System
testClassName string Name of the test class.
isAllRunMode bool true if the summary reporting is in context of all-run mode..
resultPrefab Result The prefab for test result indicators.
resultVertical UnityEngine.GameObject The vertical area which test result indicators to be belonging.
return System
		public TestSummaryReporter( string testClassName, bool isAllRunMode, Result resultPrefab, GameObject resultVertical )
		{
			this._currentTestClassName = testClassName;
			this._isAllRunMode = isAllRunMode;
			this._globalResult = CreateNewResult( resultPrefab, resultVertical );
			this._globalResult.Message.Value = testClassName;
			this._globalResult.Color.Value = UnityEngine.Color.gray;
		}