示例#1
0
 public function testbuild_report_query_where()
 {
     $aor_Report = new AOR_Report();
     $aor_Report->report_module = 'Accounts';
     //execute the method and verify that it retunrs expected results
     $expected = array('where' => array('accounts.deleted = 0 '));
     $actual = $aor_Report->build_report_query_where();
     $this->assertSame($expected, $actual);
 }