You are here

class PhpUnitErrorTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/simpletest/tests/src/Unit/PhpUnitErrorTest.php \Drupal\Tests\simpletest\Unit\PhpUnitErrorTest

Tests PHPUnit errors are getting converted to Simpletest errors.

@group simpletest

Hierarchy

Expanded class hierarchy of PhpUnitErrorTest

File

core/modules/simpletest/tests/src/Unit/PhpUnitErrorTest.php, line 17
Contains \Drupal\Tests\simpletest\Unit\PhpUnitErrorTest.

Namespace

Drupal\Tests\simpletest\Unit
View source
class PhpUnitErrorTest extends UnitTestCase {

  /**
   * Test errors reported.
   *
   * @covers ::simpletest_phpunit_xml_to_rows
   */
  public function testPhpUnitXmlParsing() {
    require_once __DIR__ . '/../../../simpletest.module';
    $phpunit_error_xml = __DIR__ . '/../../fixtures/phpunit_error.xml';
    $res = simpletest_phpunit_xml_to_rows(1, $phpunit_error_xml);
    $this
      ->assertEquals(count($res), 4, 'All testcases got extracted');
    $this
      ->assertNotEquals($res[0]['status'], 'pass');
    $this
      ->assertEquals($res[0]['status'], 'fail');

    // Test nested testsuites, which appear when you use @dataProvider.
    for ($i = 0; $i < 3; $i++) {
      $this
        ->assertNotEquals($res[$i + 1]['status'], 'pass');
      $this
        ->assertEquals($res[$i + 1]['status'], 'fail');
    }

    // Make sure simpletest_phpunit_xml_to_rows() does not balk if the test
    // didn't run.
    simpletest_phpunit_xml_to_rows(1, 'foobar');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpUnitErrorTest::testPhpUnitXmlParsing public function Test errors reported.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 259