mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-29 10:04:24 +02:00
This commit only contains the untested libaries from the incubator and autogenerated teststubs and is the basis for writing the tests refs #4250
24 lines
399 B
PHP
24 lines
399 B
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Authentication;
|
|
/**
|
|
*
|
|
* Test class for Storable
|
|
* Created Fri, 07 Jun 2013 10:38:16 +0000
|
|
*
|
|
**/
|
|
class StorableTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Storable::Create()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testCreate()
|
|
{
|
|
$this->markTestIncomplete('testCreate is not implemented yet');
|
|
}
|
|
|
|
}
|