You are here

function CommerceReportsProductTestCase::testMultipleProducts in Commerce Reporting 7.3

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

File

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

Class

CommerceReportsProductTestCase

Code

function testMultipleProducts() {
  $this
    ->createProducts(10);
  $this
    ->createOrders();
  $this
    ->_test();
}