Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: StatusTest.php
<?php namespace vendor\project; use PHPUnit\Framework\TestCase; use PHPUnit\Framework\Warning; class StatusTest extends TestCase { public function testSuccess() { $this->assertTrue(true); } public function testFailure() { $this->assertTrue(false); } public function testError() { throw new \RuntimeException; } public function testIncomplete() { $this->markTestIncomplete(); } public function testSkipped() { $this->markTestSkipped(); } public function testRisky() { } public function testWarning() { throw new Warning; } }