toBeTrue(); $teamCity->startTestSuite(new TestSuite()); $teamCity->startTest($this); $teamCity->addError($this, new Exception('Don\'t worry about this error. Its purposeful.'), 0); $teamCity->addFailure($this, new AssertionFailedError('Don\'t worry about this error. Its purposeful.'), 0); $teamCity->addWarning($this, new Warning(), 0); $teamCity->addIncompleteTest($this, new Exception(), 0); $teamCity->addRiskyTest($this, new Exception(), 0); $teamCity->addSkippedTest($this, new Exception(), 0); $teamCity->endTest($this, 0); $teamCity->printResult(new TestResult()); $teamCity->endTestSuite(new TestSuite()); })->skip('Not supported yet.'); afterEach(function () { unlink(__DIR__ . '/output.txt'); });