Remove abandoned files from tests

The deleted files were incomplete tests for non-existing files,
so they don't affect the build process

refs #4310
This commit is contained in:
Jannis Moßhammer 2013-06-14 09:38:11 +02:00
parent 5e14f828ba
commit 780ea68f2f
3 changed files with 0 additions and 131 deletions

View File

@ -1,77 +0,0 @@
<?php
namespace Tests\Icinga\Authentication;
/**
*
* Test class for Auth
* Created Fri, 07 Jun 2013 10:38:16 +0000
*
**/
class AuthTest extends \PHPUnit_Framework_TestCase
{
/**
* Test for Auth::IsAuthenticated()
*
**/
public function testIsAuthenticated()
{
$this->markTestIncomplete('testIsAuthenticated is not implemented yet');
}
/**
* Test for Auth::GetUsername()
*
**/
public function testGetUsername()
{
$this->markTestIncomplete('testGetUsername is not implemented yet');
}
/**
* Test for Auth::GetEmail()
*
**/
public function testGetEmail()
{
$this->markTestIncomplete('testGetEmail is not implemented yet');
}
/**
* Test for Auth::SetAuthenticatedUser()
*
**/
public function testSetAuthenticatedUser()
{
$this->markTestIncomplete('testSetAuthenticatedUser is not implemented yet');
}
/**
* Test for Auth::ForgetAuthentication()
*
**/
public function testForgetAuthentication()
{
$this->markTestIncomplete('testForgetAuthentication is not implemented yet');
}
/**
* Test for Auth::HasPermission()
*
**/
public function testHasPermission()
{
$this->markTestIncomplete('testHasPermission is not implemented yet');
}
/**
* Test for Auth::GetInstance()
* Note: This method is static!
*
**/
public function testGetInstance()
{
$this->markTestIncomplete('testGetInstance is not implemented yet');
}
}

View File

@ -1,31 +0,0 @@
<?php
namespace Tests\Icinga\Authentication;
/**
*
* Test class for Backend
* Created Fri, 07 Jun 2013 10:38:16 +0000
*
**/
class BackendTest extends \PHPUnit_Framework_TestCase
{
/**
* Test for Backend::HasUsername()
*
**/
public function testHasUsername()
{
$this->markTestIncomplete('testHasUsername is not implemented yet');
}
/**
* Test for Backend::Authenticate()
*
**/
public function testAuthenticate()
{
$this->markTestIncomplete('testAuthenticate is not implemented yet');
}
}

View File

@ -1,23 +0,0 @@
<?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');
}
}