/**
  * @expectedException Application\Exceptions\NotFoundException
  **/
 public function testGetExpenseMonthlyDetailByBillingCycleStartDoesNotExist()
 {
     $params = array(ReportFilterFields::REPORT_TYPE => ReportModel::EXPENSE_DETAIL_MONTHLY, ReportFilterFields::ORGANIZATION => self::CUSTOMER_ORG_ID, ReportFilterFields::BILLING_ACCOUNT => "0", 'date' => '2012-11', 'billingcyclestartday' => '13');
     $data = $this->_reportService->load(ReportModel::EXPENSE_DETAIL_MONTHLY, $params);
 }