<?php
/**
*
* Concrete class test.
*
*/
class Test_Solar_Test extends Solar_Test {
/**
*
* Configuration values.
*
* @var array
*
*/
protected $_Test_Solar_Test = array(
);
// -----------------------------------------------------------------
//
// Test methods.
//
// -----------------------------------------------------------------
/**
*
* Test -- Constructor.
*
*/
public function test__construct()
{
$obj = Solar::factory('Solar_Test');
$this->assertInstance($obj, 'Solar_Test');
}
/**
*
* Test -- Asserts that two variables are equal; type is not strict.
*
*/
public function testAssertEquals()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is boolean false.
*
*/
public function testAssertFalse()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a object is an instance of a class.
*
*/
public function testAssertInstance()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that two variables are not equal; type is not strict.
*
*/
public function testAssertNotEquals()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is not boolean false.
*
*/
public function testAssertNotFalse()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a object is not an instance of a class.
*
*/
public function testAssertNotInstance()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is not PHP null.
*
*/
public function testAssertNotNull()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a value does not match a regular expression pattern using [[php::preg_match() | ]].
*
*/
public function testAssertNotRegex()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that two variables are not the same type and value.
*
*/
public function testAssertNotSame()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is not boolean true.
*
*/
public function testAssertNotTrue()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is PHP null.
*
*/
public function testAssertNull()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that an object property meets criteria.
*
*/
public function testAssertProperty()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a value matches a regular expression pattern using [[php::preg_match() | ]].
*
*/
public function testAssertRegex()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that two variables have the same type and value.
*
*/
public function testAssertSame()
{
$this->todo('stub');
}
/**
*
* Test -- Asserts that a variable is boolean true.
*
*/
public function testAssertTrue()
{
$this->todo('stub');
}
/**
*
* Test -- Prints diagnostic output.
*
*/
public function testDiag()
{
$this->todo('stub');
}
/**
*
* Test -- Error handler for this test; throws a test failure.
*
*/
public function testError()
{
$this->todo('stub');
}
/**
*
* Test -- Throws an exception indicating a failed test.
*
*/
public function testFail()
{
$this->todo('stub');
}
/**
*
* Test -- Returns the number of assertions made by this test.
*
*/
public function testGetAssertCount()
{
$this->todo('stub');
}
/**
*
* Test -- Resets the assertion counter to zero.
*
*/
public function testResetAssertCount()
{
$this->todo('stub');
}
/**
*
* Test -- Setup before each method test.
*
*/
public function testpreTest()
{
$this->todo('stub');
}
/**
*
* Test -- Throws an exception indicating a skipped test.
*
*/
public function testSkip()
{
$this->todo('stub');
}
/**
*
* Test -- Teardown after each method test.
*
*/
public function testpostTest()
{
$this->todo('stub');
}
/**
*
* Test -- Throws an exception indicating an incomplete test.
*
*/
public function testTodo()
{
$this->todo('stub');
}
}