mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-19 07:57:40 +02:00
Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
24 lines
408 B
PHP
24 lines
408 B
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Application;
|
|
/**
|
|
*
|
|
* Test class for Session
|
|
* Created Thu, 07 Feb 2013 10:07:13 +0000
|
|
*
|
|
**/
|
|
class SessionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Session::GetInstance()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testGetInstance()
|
|
{
|
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
|
}
|
|
|
|
}
|