rhymix/test-phpUnit/classes/xml/xmlquery/argument/ConditionArgumentTest.php
2011-07-07 14:34:56 +00:00

40 lines
993 B
PHP

<?php
/**
* Test class for ConditionArgument.
*/
class ConditionArgumentTest extends CubridTest {
/**
* @todo Implement testCreateConditionValue().
*/
public function testCreateConditionValue() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetType().
*/
public function testGetType() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSetColumnType().
*/
public function testSetColumnType() {
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
?>