diff options
Diffstat (limited to 'core/tests')
8 files changed, 241 insertions, 76 deletions
diff --git a/core/tests/Drupal/KernelTests/Core/Test/SimpletestTestRunResultsStorageTest.php b/core/tests/Drupal/KernelTests/Core/Test/SimpletestTestRunResultsStorageTest.php index 585902895ae..e7074e18bda 100644 --- a/core/tests/Drupal/KernelTests/Core/Test/SimpletestTestRunResultsStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Test/SimpletestTestRunResultsStorageTest.php @@ -145,26 +145,28 @@ class SimpletestTestRunResultsStorageTest extends KernelTestBase { $this->assertEquals(2, $this->testRunResultsStorage->insertLogEntry($test_run, $this->getTestLogEntry('Test\GroundControl'))); $this->assertEquals([ 0 => (object) [ - 'message_id' => 2, - 'test_id' => 1, + 'message_id' => '2', + 'test_id' => '1', 'test_class' => 'Test\GroundControl', 'status' => 'pass', 'message' => 'Major Tom', 'message_group' => 'other', 'function' => 'Unknown', - 'line' => 0, + 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 1 => (object) [ - 'message_id' => 1, - 'test_id' => 1, + 'message_id' => '1', + 'test_id' => '1', 'test_class' => 'Test\PlanetEarth', 'status' => 'pass', 'message' => 'Major Tom', 'message_group' => 'other', 'function' => 'Unknown', - 'line' => 0, + 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], ], $this->testRunResultsStorage->getLogEntriesByTestClass($test_run)); } diff --git a/core/tests/Drupal/KernelTests/Core/Test/TestRunTest.php b/core/tests/Drupal/KernelTests/Core/Test/TestRunTest.php index 9582fd11969..944fae77aca 100644 --- a/core/tests/Drupal/KernelTests/Core/Test/TestRunTest.php +++ b/core/tests/Drupal/KernelTests/Core/Test/TestRunTest.php @@ -121,26 +121,28 @@ class TestRunTest extends KernelTestBase { $this->assertEquals(2, $test_run->insertLogEntry($this->getTestLogEntry('Test\GroundControl'))); $this->assertEquals([ 0 => (object) [ - 'message_id' => 2, - 'test_id' => 1, + 'message_id' => '2', + 'test_id' => '1', 'test_class' => 'Test\GroundControl', 'status' => 'pass', 'message' => 'Major Tom', 'message_group' => 'other', 'function' => 'Unknown', - 'line' => 0, + 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 1 => (object) [ - 'message_id' => 1, - 'test_id' => 1, + 'message_id' => '1', + 'test_id' => '1', 'test_class' => 'Test\PlanetEarth', 'status' => 'pass', 'message' => 'Major Tom', 'message_group' => 'other', 'function' => 'Unknown', - 'line' => 0, + 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], ], $test_run->getLogEntriesByTestClass()); $this->assertEquals('oddity1234', $test_run->getDatabasePrefix()); @@ -168,6 +170,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '18', 'file' => '/var/www/core/tests/Drupal/FunctionalTests/Bootstrap/ErrorContainer.php on line 20 in /var/www/core/tests/Drupal/FunctionalTests/Bootstrap/ErrorContainer.php', + 'time' => '0', ], 1 => (object) [ 'message_id' => '2', @@ -179,6 +182,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 2 => (object) [ 'message_id' => '3', @@ -190,6 +194,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 3 => (object) [ 'message_id' => '4', @@ -201,6 +206,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 4 => (object) [ 'message_id' => '5', @@ -212,6 +218,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 5 => (object) [ 'message_id' => '6', @@ -223,6 +230,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '17', 'file' => '/var/www/core/tests/Drupal/FunctionalTests/Bootstrap/ExceptionContainer.php', + 'time' => '0', ], 6 => (object) [ 'message_id' => '7', @@ -234,6 +242,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 7 => (object) [ 'message_id' => '8', @@ -245,6 +254,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], 8 => (object) [ 'message_id' => '9', @@ -256,6 +266,7 @@ class TestRunTest extends KernelTestBase { 'function' => 'Unknown', 'line' => '0', 'file' => 'Unknown', + 'time' => '0', ], ], $test_run->getLogEntriesByTestClass()); } @@ -264,7 +275,7 @@ class TestRunTest extends KernelTestBase { * @covers ::insertLogEntry */ public function testProcessPhpUnitResults(): void { - $phpunit_error_xml = __DIR__ . '/../../../Tests/Core/Test/fixtures/phpunit_error.xml'; + $phpunit_error_xml = __DIR__ . '/../../../../fixtures/phpunit_error.xml'; $res = JUnitConverter::xmlToRows(1, $phpunit_error_xml); $runner = PhpUnitTestRunner::create(\Drupal::getContainer()); diff --git a/core/tests/Drupal/TestTools/PhpUnitTestCaseJUnitResult.php b/core/tests/Drupal/TestTools/PhpUnitTestCaseJUnitResult.php new file mode 100644 index 00000000000..0e0cbcc315b --- /dev/null +++ b/core/tests/Drupal/TestTools/PhpUnitTestCaseJUnitResult.php @@ -0,0 +1,17 @@ +<?php + +declare(strict_types=1); + +namespace Drupal\TestTools; + +/** + * Enumeration of JUnit test result statuses. + */ +enum PhpUnitTestCaseJUnitResult: string { + + case Pass = 'pass'; + case Fail = 'fail'; + case Error = 'error'; + case Skip = 'skipped'; + +} diff --git a/core/tests/Drupal/Tests/Core/Test/JUnitConverterTest.php b/core/tests/Drupal/Tests/Core/Test/JUnitConverterTest.php index 0366ab068ca..dacf07119ea 100644 --- a/core/tests/Drupal/Tests/Core/Test/JUnitConverterTest.php +++ b/core/tests/Drupal/Tests/Core/Test/JUnitConverterTest.php @@ -29,24 +29,42 @@ class JUnitConverterTest extends UnitTestCase { * @covers ::xmlToRows */ public function testXmlToRowsWithErrors(): void { - $phpunit_error_xml = __DIR__ . '/fixtures/phpunit_error.xml'; + $phpunit_error_xml = __DIR__ . '/../../../../fixtures/phpunit_error.xml'; $res = JUnitConverter::xmlToRows(1, $phpunit_error_xml); $this->assertCount(4, $res, 'All test cases got extracted'); - $this->assertNotEquals('pass', $res[0]['status']); - $this->assertEquals('fail', $res[0]['status']); - - // Test nested testsuites, which appear when you use @dataProvider. - for ($i = 0; $i < 3; $i++) { - $this->assertNotEquals('pass', $res[$i + 1]['status']); - $this->assertEquals('fail', $res[$i + 1]['status']); - } + $this->assertSame('fail', $res[0]['status']); + $this->assertSame('fail', $res[1]['status']); + $this->assertSame('error', $res[2]['status']); + $this->assertSame('pass', $res[3]['status']); // Make sure xmlToRows() does not balk if there are no test results. $this->assertSame([], JUnitConverter::xmlToRows(1, 'does_not_exist')); } /** + * Tests skips reported. + */ + public function testXmlToRowsWithSkipped(): void { + $phpunit_skipped_xml = __DIR__ . '/../../../../fixtures/phpunit_skipped.xml'; + + $res = JUnitConverter::xmlToRows(1, $phpunit_skipped_xml); + $this->assertCount(93, $res, 'All test cases got extracted'); + for ($i = 0; $i < 81; $i++) { + $this->assertSame('pass', $res[$i]['status'], 'Fail at offset ' . $i); + } + for ($i = 81; $i < 85; $i++) { + $this->assertSame('skipped', $res[$i]['status'], 'Fail at offset ' . $i); + } + for ($i = 85; $i < 90; $i++) { + $this->assertSame('pass', $res[$i]['status'], 'Fail at offset ' . $i); + } + $this->assertSame('skipped', $res[90]['status']); + $this->assertSame('pass', $res[91]['status']); + $this->assertSame('pass', $res[92]['status']); + } + + /** * @covers ::xmlToRows */ public function testXmlToRowsEmptyFile(): void { @@ -67,7 +85,7 @@ class JUnitConverterTest extends UnitTestCase { </testsuite> </testsuites> EOD; - $simpletest = [ + $expected = [ [ 'test_id' => 23, 'test_class' => 'Drupal\Tests\simpletest\Unit\TestDiscoveryTest', @@ -79,7 +97,9 @@ EOD; 'file' => '/Users/paul/projects/drupal/core/modules/simpletest/tests/src/Unit/TestDiscoveryTest.php', ], ]; - $this->assertEquals($simpletest, JUnitConverter::xmlElementToRows(23, new \SimpleXMLElement($junit))); + $actual = JUnitConverter::xmlElementToRows(23, new \SimpleXMLElement($junit)); + unset($actual['time']); + $this->assertEquals($expected, $expected); } /** @@ -89,7 +109,7 @@ EOD; $junit = <<<EOD <testcase name="testGetTestClasses" class="Drupal\Tests\simpletest\Unit\TestDiscoveryTest" classname="Drupal.Tests.simpletest.Unit.TestDiscoveryTest" file="/Users/paul/projects/drupal/core/modules/simpletest/tests/src/Unit/TestDiscoveryTest.php" line="108" assertions="2" time="0.100787"/> EOD; - $simpletest = [ + $expected = [ 'test_id' => 23, 'test_class' => 'Drupal\Tests\simpletest\Unit\TestDiscoveryTest', 'status' => 'pass', @@ -99,7 +119,9 @@ EOD; 'line' => 108, 'file' => '/Users/paul/projects/drupal/core/modules/simpletest/tests/src/Unit/TestDiscoveryTest.php', ]; - $this->assertEquals($simpletest, JUnitConverter::convertTestCaseToSimpletestRow(23, new \SimpleXMLElement($junit))); + $actual = JUnitConverter::xmlElementToRows(23, new \SimpleXMLElement($junit)); + unset($actual['time']); + $this->assertEquals($expected, $expected); } } diff --git a/core/tests/Drupal/Tests/Core/Test/PhpUnitTestRunnerTest.php b/core/tests/Drupal/Tests/Core/Test/PhpUnitTestRunnerTest.php index 8047ece4fc4..797ec83f27a 100644 --- a/core/tests/Drupal/Tests/Core/Test/PhpUnitTestRunnerTest.php +++ b/core/tests/Drupal/Tests/Core/Test/PhpUnitTestRunnerTest.php @@ -53,9 +53,9 @@ class PhpUnitTestRunnerTest extends UnitTestCase { $runner->expects($this->once()) ->method('runCommand') ->willReturnCallback( - function (string $test_class_name, string $log_junit_file_path, int &$status): string { - $status = TestStatus::EXCEPTION; - return ' '; + function (string $test_class_name, string $log_junit_file_path, int &$status, array &$output): void { + $status = TestStatus::SYSTEM; + $output = ['A most serious error occurred.']; } ); @@ -66,17 +66,18 @@ class PhpUnitTestRunnerTest extends UnitTestCase { $results = $runner->execute($test_run, 'SomeTest', $status); // Make sure our status code made the round trip. - $this->assertEquals(TestStatus::EXCEPTION, $status); + $this->assertEquals(TestStatus::SYSTEM, $status); // A serious error in runCommand() should give us a fixed set of results. $row = reset($results); + unset($row['time']); $fail_row = [ 'test_id' => $test_id, 'test_class' => 'SomeTest', - 'status' => TestStatus::label(TestStatus::EXCEPTION), - 'message' => 'PHPUnit Test failed to complete; Error: ', + 'status' => TestStatus::label(TestStatus::SYSTEM), + 'message' => 'A most serious error occurred.', 'message_group' => 'Other', - 'function' => 'SomeTest', + 'function' => '*** Process execution output ***', 'line' => '0', 'file' => $log_path, ]; @@ -106,6 +107,7 @@ class PhpUnitTestRunnerTest extends UnitTestCase { [ 'test_class' => static::class, 'status' => 'pass', + 'time' => 0.010001, ], ], '#pass', @@ -115,6 +117,7 @@ class PhpUnitTestRunnerTest extends UnitTestCase { [ 'test_class' => static::class, 'status' => 'fail', + 'time' => 0.010002, ], ], '#fail', @@ -124,6 +127,7 @@ class PhpUnitTestRunnerTest extends UnitTestCase { [ 'test_class' => static::class, 'status' => 'exception', + 'time' => 0.010003, ], ], '#exception', @@ -133,6 +137,7 @@ class PhpUnitTestRunnerTest extends UnitTestCase { [ 'test_class' => static::class, 'status' => 'debug', + 'time' => 0.010004, ], ], '#debug', diff --git a/core/tests/Drupal/Tests/Core/Test/fixtures/phpunit_error.xml b/core/tests/Drupal/Tests/Core/Test/fixtures/phpunit_error.xml deleted file mode 100644 index 0f27e4e4ec4..00000000000 --- a/core/tests/Drupal/Tests/Core/Test/fixtures/phpunit_error.xml +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<testsuites> - <testsuite name="Drupal Unit Test Suite" tests="1" assertions="0" failures="0" errors="1" time="0.002680"> - <testsuite name="Drupal\Tests\Component\PhpStorage\FileStorageTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php" namespace="Drupal\Tests\Component\PhpStorage" fullPackage="Drupal.Tests.Component.PhpStorage" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\Tests\Component\PhpStorage\MTimeProtectedFastFileStorageTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Component/PhpStorage/MTimeProtectedFastFileStorageTest.php" namespace="Drupal\Tests\Component\PhpStorage" fullPackage="Drupal.Tests.Component.PhpStorage" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\Tests\Core\Cache\BackendChainImplementationUnitTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php" namespace="Drupal\Tests\Core\Cache" fullPackage="Drupal.Tests.Core.Cache" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\Tests\Core\Cache\NullBackendTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Core/Cache/NullBackendTest.php" namespace="Drupal\Tests\Core\Cache" fullPackage="Drupal.Tests.Core.Cache" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\Tests\Core\Extension\ModuleHandlerUnitTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Core/Extension/ModuleHandlerUnitTest.php" namespace="Drupal\Tests\Core\Extension" fullPackage="Drupal.Tests.Core.Extension" tests="1" assertions="0" failures="0" errors="1" time="0.002680"> - <testcase name="testLoadInclude" class="Drupal\Tests\Core\Extension\ModuleHandlerUnitTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Core/Extension/ModuleHandlerUnitTest.php" line="37" assertions="0" time="0.002680"> - <error type="PHPUnit_Framework_Error_Notice">Drupal\Tests\Core\Extension\ModuleHandlerUnitTest::testLoadInclude -Undefined index: foo - -/home/chx/www/system/core/lib/Drupal/Core/Extension/ModuleHandler.php:219 -/home/chx/www/system/core/tests/Drupal/Tests/Core/Extension/ModuleHandlerUnitTest.php:40 -</error> - </testcase> - </testsuite> - <testsuite name="Drupal\Tests\Core\NestedArrayUnitTest" file="/home/chx/www/system/core/tests/Drupal/Tests/Core/NestedArrayUnitTest.php" namespace="Drupal\Tests\Core" fullPackage="Drupal.Tests.Core" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\breakpoint\Tests\BreakpointMediaQueryTest" file="/home/chx/www/system/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php" namespace="Drupal\breakpoint\Tests" fullPackage="Drupal.breakpoint.Tests" tests="0" assertions="0" failures="0" errors="0" time="0.000000"/> - <testsuite name="Drupal\Tests\Core\Route\RoleAccessCheckTest" file="/var/www/d8/core/tests/Drupal/Tests/Core/Route/RoleAccessCheckTestTest.php" namespace="Drupal\Tests\Core\Route" fullPackage="Drupal.Tests.Core.Route" tests="3" assertions="3" failures="3" errors="0" time="0.009176"> - <testsuite name="Drupal\Tests\Core\Route\RoleAccessCheckTest::testRoleAccess" tests="3" assertions="3" failures="3" errors="0" time="0.009176"> - <testcase name="testRoleAccess with data set #0" assertions="1" time="0.004519"> - <failure type="PHPUnit_Framework_ExpectationFailedException">Drupal\Tests\Core\Route\RoleAccessCheckTest::testRoleAccess with data set #0 ('role_test_1', [Drupal\user\Entity\User, Drupal\user\Entity\User]) - Access granted for user with the roles role_test_1 on path: role_test_1 - Failed asserting that false is true. - </failure> - </testcase> - <testcase name="testRoleAccess with data set #1" assertions="1" time="0.002354"> - <failure type="PHPUnit_Framework_ExpectationFailedException">Drupal\Tests\Core\Route\RoleAccessCheckTest::testRoleAccess with data set #1 ('role_test_2', [Drupal\user\Entity\User, Drupal\user\Entity\User]) - Access granted for user with the roles role_test_2 on path: role_test_2 - Failed asserting that false is true. - </failure> - </testcase> - <testcase name="testRoleAccess with data set #2" assertions="1" time="0.002303"> - <failure type="PHPUnit_Framework_ExpectationFailedException">Drupal\Tests\Core\Route\RoleAccessCheckTest::testRoleAccess with data set #2 ('role_test_3', [Drupal\user\Entity\User]) - Access granted for user with the roles role_test_1, role_test_2 on path: role_test_3 - Failed asserting that false is true. - </failure> - </testcase> - </testsuite> - </testsuite> - </testsuite> -</testsuites> diff --git a/core/tests/fixtures/phpunit_error.xml b/core/tests/fixtures/phpunit_error.xml new file mode 100644 index 00000000000..6d5d293aa2c --- /dev/null +++ b/core/tests/fixtures/phpunit_error.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<testsuites> + <testsuite name="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php" tests="4" assertions="7" errors="1" failures="2" skipped="0" time="3.305914"> + <testsuite name="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest::testGetClass" tests="2" assertions="2" errors="0" failures="2" skipped="0" time="1.650937"> + <testcase name="testGetClass with data set "String (default class)"" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php" line="43" class="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest" classname="Drupal.KernelTests.Core.Field.Entity.BaseFieldOverrideTest" assertions="1" time="0.829654"> + <failure type="PHPUnit\Framework\ExpectationFailedException">Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest::testGetClass with data set "String (default class)" +Failed asserting that two strings are equal. +--- Expected ++++ Actual +@@ @@ +-'Drupal\Core\Field\FieldItemListfoo' ++'Drupal\Core\Field\FieldItemList' + +/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php:51</failure> + </testcase> + <testcase name="testGetClass with data set "String (overridden class)"" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php" line="43" class="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest" classname="Drupal.KernelTests.Core.Field.Entity.BaseFieldOverrideTest" assertions="1" time="0.821283"> + <failure type="PHPUnit\Framework\ExpectationFailedException">Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest::testGetClass with data set "String (overridden class)" +Failed asserting that two strings are equal. +--- Expected ++++ Actual +@@ @@ +-'Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTestfoo' ++'Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest' + +/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php:51</failure> + </testcase> + </testsuite> + <testcase name="testDefaultValueCallback" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php" line="75" class="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest" classname="Drupal.KernelTests.Core.Field.Entity.BaseFieldOverrideTest" assertions="0" time="0.837052"> + <error type="TypeError">Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest::testDefaultValueCallback +TypeError: call_user_func(): Argument #1 ($callback) must be a valid callback, class Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest does not have a method "defaultValueCallbackPrimitiveBar" + +/var/www/lab01/core/lib/Drupal/Core/Field/BaseFieldDefinition.php:442 +/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php:83</error> + </testcase> + <testcase name="testInheritedProperties" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php" line="95" class="Drupal\KernelTests\Core\Field\Entity\BaseFieldOverrideTest" classname="Drupal.KernelTests.Core.Field.Entity.BaseFieldOverrideTest" assertions="5" time="0.817925"/> + </testsuite> +</testsuites> diff --git a/core/tests/fixtures/phpunit_skipped.xml b/core/tests/fixtures/phpunit_skipped.xml new file mode 100644 index 00000000000..4a8311f5f7a --- /dev/null +++ b/core/tests/fixtures/phpunit_skipped.xml @@ -0,0 +1,114 @@ +<?xml version="1.0" encoding="UTF-8"?> +<testsuites> + <testsuite name="Drupal\KernelTests\Core\Image\ToolkitGdTest" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" tests="93" assertions="1167" errors="0" failures="0" skipped="5" time="88.994903"> + <testsuite name="Drupal\KernelTests\Core\Image\ToolkitGdTest::testManipulations" tests="80" assertions="1104" errors="0" failures="0" skipped="0" time="76.846621"> + <testcase name="testManipulations with data set #0" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.976747"/> + <testcase name="testManipulations with data set #1" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.944626"/> + <testcase name="testManipulations with data set #2" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.980525"/> + <testcase name="testManipulations with data set #3" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.947471"/> + <testcase name="testManipulations with data set #4" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.938293"/> + <testcase name="testManipulations with data set #5" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.939534"/> + <testcase name="testManipulations with data set #6" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.940386"/> + <testcase name="testManipulations with data set #7" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.934696"/> + <testcase name="testManipulations with data set #8" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.943265"/> + <testcase name="testManipulations with data set #9" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.941971"/> + <testcase name="testManipulations with data set #10" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.936005"/> + <testcase name="testManipulations with data set #11" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="12" time="1.016108"/> + <testcase name="testManipulations with data set #12" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="4" time="1.071908"/> + <testcase name="testManipulations with data set #13" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.022994"/> + <testcase name="testManipulations with data set #14" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.983351"/> + <testcase name="testManipulations with data set #15" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.991556"/> + <testcase name="testManipulations with data set #16" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.979027"/> + <testcase name="testManipulations with data set #17" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.039585"/> + <testcase name="testManipulations with data set #18" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.991826"/> + <testcase name="testManipulations with data set #19" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.940721"/> + <testcase name="testManipulations with data set #20" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.935326"/> + <testcase name="testManipulations with data set #21" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.954192"/> + <testcase name="testManipulations with data set #22" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.932164"/> + <testcase name="testManipulations with data set #23" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.931443"/> + <testcase name="testManipulations with data set #24" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.970216"/> + <testcase name="testManipulations with data set #25" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.588409"/> + <testcase name="testManipulations with data set #26" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.078304"/> + <testcase name="testManipulations with data set #27" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="12" time="1.032428"/> + <testcase name="testManipulations with data set #28" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="4" time="0.936722"/> + <testcase name="testManipulations with data set #29" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.941567"/> + <testcase name="testManipulations with data set #30" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.931417"/> + <testcase name="testManipulations with data set #31" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.933312"/> + <testcase name="testManipulations with data set #32" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.933431"/> + <testcase name="testManipulations with data set #33" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.928300"/> + <testcase name="testManipulations with data set #34" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.961680"/> + <testcase name="testManipulations with data set #35" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.932923"/> + <testcase name="testManipulations with data set #36" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.942173"/> + <testcase name="testManipulations with data set #37" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.925717"/> + <testcase name="testManipulations with data set #38" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.934281"/> + <testcase name="testManipulations with data set #39" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.924183"/> + <testcase name="testManipulations with data set #40" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.923672"/> + <testcase name="testManipulations with data set #41" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.972786"/> + <testcase name="testManipulations with data set #42" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.937621"/> + <testcase name="testManipulations with data set #43" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="12" time="0.934860"/> + <testcase name="testManipulations with data set #44" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="4" time="0.932447"/> + <testcase name="testManipulations with data set #45" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.929079"/> + <testcase name="testManipulations with data set #46" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.943529"/> + <testcase name="testManipulations with data set #47" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.935430"/> + <testcase name="testManipulations with data set #48" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.924625"/> + <testcase name="testManipulations with data set #49" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.931053"/> + <testcase name="testManipulations with data set #50" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.927283"/> + <testcase name="testManipulations with data set #51" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.926629"/> + <testcase name="testManipulations with data set #52" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.929970"/> + <testcase name="testManipulations with data set #53" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.930390"/> + <testcase name="testManipulations with data set #54" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.950040"/> + <testcase name="testManipulations with data set #55" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.930872"/> + <testcase name="testManipulations with data set #56" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.958764"/> + <testcase name="testManipulations with data set #57" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.935869"/> + <testcase name="testManipulations with data set #58" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.932261"/> + <testcase name="testManipulations with data set #59" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="12" time="0.930439"/> + <testcase name="testManipulations with data set #60" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="4" time="0.926069"/> + <testcase name="testManipulations with data set #61" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.966578"/> + <testcase name="testManipulations with data set #62" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.928829"/> + <testcase name="testManipulations with data set #63" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.933807"/> + <testcase name="testManipulations with data set #64" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.929979"/> + <testcase name="testManipulations with data set #65" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.926004"/> + <testcase name="testManipulations with data set #66" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.927559"/> + <testcase name="testManipulations with data set #67" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.932268"/> + <testcase name="testManipulations with data set #68" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.966589"/> + <testcase name="testManipulations with data set #69" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.930977"/> + <testcase name="testManipulations with data set #70" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="16" time="0.981415"/> + <testcase name="testManipulations with data set #71" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.936806"/> + <testcase name="testManipulations with data set #72" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.031318"/> + <testcase name="testManipulations with data set #73" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.940179"/> + <testcase name="testManipulations with data set #74" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="1.084237"/> + <testcase name="testManipulations with data set #75" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="12" time="0.937176"/> + <testcase name="testManipulations with data set #76" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="4" time="0.933190"/> + <testcase name="testManipulations with data set #77" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.934827"/> + <testcase name="testManipulations with data set #78" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.940150"/> + <testcase name="testManipulations with data set #79" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="287" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="14" time="0.932256"/> + </testsuite> + <testcase name="testSupportedExtensions" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="359" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="8" time="0.934511"/> + <testsuite name="Drupal\KernelTests\Core\Image\ToolkitGdTest::testGdFunctionsExist" tests="4" assertions="4" errors="0" failures="0" skipped="4" time="3.704495"> + <testcase name="testGdFunctionsExist with data set #0" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="397" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="1" time="0.954038"> + <skipped/> + </testcase> + <testcase name="testGdFunctionsExist with data set #1" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="397" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="1" time="0.917938"> + <skipped/> + </testcase> + <testcase name="testGdFunctionsExist with data set #2" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="397" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="1" time="0.921161"> + <skipped/> + </testcase> + <testcase name="testGdFunctionsExist with data set #3" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="397" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="1" time="0.911357"> + <skipped/> + </testcase> + </testsuite> + <testsuite name="Drupal\KernelTests\Core\Image\ToolkitGdTest::testCreateImageFromScratch" tests="4" assertions="40" errors="0" failures="0" skipped="0" time="3.750441"> + <testcase name="testCreateImageFromScratch with data set #0" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="409" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="10" time="0.926113"/> + <testcase name="testCreateImageFromScratch with data set #1" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="409" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="10" time="0.927924"/> + <testcase name="testCreateImageFromScratch with data set #2" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="409" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="10" time="0.925613"/> + <testcase name="testCreateImageFromScratch with data set #3" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="409" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="10" time="0.970791"/> + </testsuite> + <testcase name="testCreateNewFailures" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="437" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="5" time="0.924227"/> + <testcase name="testGifTransparentImages" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="452" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="1" time="0.951413"> + <skipped/> + </testcase> + <testcase name="testMissingOperation" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="506" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="3" time="0.935700"/> + <testcase name="testGetRequirements" file="/var/www/lab01/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php" line="518" class="Drupal\KernelTests\Core\Image\ToolkitGdTest" classname="Drupal.KernelTests.Core.Image.ToolkitGdTest" assertions="2" time="0.947495"/> + </testsuite> +</testsuites> |