File "StatusTest.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/StatusTest.php
File size: 510 bytes
MIME-type: --
Charset: utf-8
<?php
class StatusTest extends PHPUnit_Framework_TestCase
{
public function testSuccess()
{
$this->assertTrue(true);
}
public function testFailure()
{
$this->assertTrue(false);
}
public function testError()
{
throw new \Exception;
}
public function testIncomplete()
{
$this->markTestIncomplete();
}
public function testSkipped()
{
$this->markTestSkipped();
}
public function testRisky()
{
}
}