object=new Acc_Bilan($g_connection);
$this->object->from = $g_connection->get_value('select min(p_id) from parm_periode');
$this->object->to = $g_connection->get_value('select max(p_id) from parm_periode');
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers Acc_Bilan::display_form
* @todo Implement testDisplay_form().
*/
public function testDisplay_form()
{
$r=$this->object->display_form();
$this->assertStringStartsWith('',$r);
}
/**
* @covers Acc_Bilan::verify
* @todo Implement testVerify().
*/
public function testVerify()
{
ob_start();
$this->object->verify();
$r=ob_get_contents();
ob_end_clean();
$this->assertStringStartsWith('
',$r);
}
/**
* @covers Acc_Bilan::get_request_get
* @todo Implement testGet_request_get().
*/
public function testGet_request_get()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::load
* @todo Implement testLoad().
*/
public function testLoad()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::file_open_form
* @todo Implement testFile_open_form().
*/
public function testFile_open_form()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::file_open_template
* @todo Implement testFile_open_template().
*/
public function testFile_open_template()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::compute_formula
* @todo Implement testCompute_formula().
*/
public function testCompute_formula()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::generate_odt
* @todo Implement testGenerate_odt().
*/
public function testGenerate_odt()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::generate_plain
* @todo Implement testGenerate_plain().
*/
public function testGenerate_plain()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::generate
* @todo Implement testGenerate().
*/
public function testGenerate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::send
* @todo Implement testSend().
*/
public function testSend()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Acc_Bilan::test_me
* @todo Implement testTest_me().
*/
public function testTest_me()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}