Example #1
0
        public void TestStarted(NUnit.Framework.Interfaces.ITest test)
        {
            Debug.Log(test.Name);
            WebApiServer.ourCurrentTestName = test.Name;

            JSONClass jsonClass = new JSONClass();

            jsonClass.Add("name", test.Name);
            jsonClass.Add("uuid", myUUID);
            jsonClass.Add("type", "TestStarted");


            ConsuloIntegration.SendToConsulo("unityTestState", jsonClass);
        }
Example #2
0
 public TestWrapper(nui.ITest test)
 {
     _test = test;
 }
Example #3
0
 void nui.ITestListener.TestStarted(nui.ITest test)
 {
     OnTestStarted(new UnitTestTestEventArgs(new TestWrapper(test)));
 }
Example #4
0
 public bool Pass(nui.ITest test) => _filter.Pass(new TestWrapper(test));
Example #5
0
 public bool IsExplicitMatch(nui.ITest test) => _filter.IsExplicitMatch(new TestWrapper(test));