24 lines
375 B
PHP
Executable File
24 lines
375 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Icinga;
|
|
/**
|
|
*
|
|
* Test class for Format
|
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
|
*
|
|
**/
|
|
class FormatTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Format::Bytes()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testBytes()
|
|
{
|
|
$this->markTestIncomplete('testBytes is not implemented yet');
|
|
}
|
|
|
|
}
|