protected function CommerceReportsSalesTestCase::_getDates in Commerce Reporting 7.4
3 calls to CommerceReportsSalesTestCase::_getDates()
File
- src/
Tests/ CommerceReportsSalesTestCase.php, line 34
Class
Namespace
Drupal\commerce_reports\TestsCode
protected function _getDates() {
$report = views_get_view_result('commerce_reports_sales', 'page');
$possibleDates = array();
foreach ($report as $line) {
$possibleDates[] = $this
->getOrderCreated($line);
}
return $possibleDates;
}