You are here

function CommerceReportsProductTestCase::testMultipleOrdersProducts in Commerce Reporting 7.3

Tests creating a multiple orders, containing multiple products with a variable quantity. Then verifies if the reporting is correct.

File

tests/commerce_reports.test, line 572
Unit tests for the commerce reports module.

Class

CommerceReportsProductTestCase

Code

function testMultipleOrdersProducts() {
  $this
    ->createProducts(5);
  $this
    ->createOrders(5);
  $this
    ->_test();
}