public void Completed(RuntimeTestResult activeTest) { Debug.Log($"Completed: {activeTest.Name}: {activeTest.State}"); if (activeTest.Error != null) { Debug.LogError(activeTest.Error); } }
private RuntimeTestResult Run(IRuntimeTest runtimeTest) { try { //TODO: think of a way to streamline registering listeners, right now they are registere in the test, but unregistered in the runtime tester return runtimeTest.Run(PosApplication); } catch (Exception ex) { return RuntimeTestResult.Error(runtimeTest, ex.Message); } finally { PosApplication.MessagingService.UnregisterListener(runtimeTest); } }
public void Completed(RuntimeTestResult activeTest) { if (activeTest.State == RuntimeTestState.Success) { _passed += 1; _api.Log($"Test End: {activeTest.Name} OK", Color.green); } else { _failed += 1; _api.Log($"Test End: {activeTest.Name} FAILED", Color.red); if (activeTest.Error != null) { _api.Log(activeTest.Error.ToString(), Color.red); } } }
public void Started(RuntimeTestResult activeTest) { Debug.Log($"Started: {activeTest.Name}"); }
public void Started(RuntimeTestResult activeTest) { _api.Log($"\nTest Start: {activeTest.Name}", Color.gray); }