|
| 1 | +--TEST-- |
| 2 | +phpunit --exclude-group X+Y+Z tests/MultiGroupTest.php (AND exclude group filter with three groups) |
| 3 | +--FILE-- |
| 4 | +<?php declare(strict_types=1); |
| 5 | +$_SERVER['argv'][] = '--do-not-cache-result'; |
| 6 | +$_SERVER['argv'][] = '--no-configuration'; |
| 7 | +$_SERVER['argv'][] = '--debug'; |
| 8 | +$_SERVER['argv'][] = '--exclude-group'; |
| 9 | +$_SERVER['argv'][] = 'X+Y+Z'; |
| 10 | +$_SERVER['argv'][] = __DIR__ . '/../../_files/groups-with-and-logic/tests/MultiGroupTest.php'; |
| 11 | + |
| 12 | +require_once __DIR__ . '/../../../bootstrap.php'; |
| 13 | + |
| 14 | +(new PHPUnit\TextUI\Application)->run($_SERVER['argv']); |
| 15 | +--EXPECTF-- |
| 16 | +PHPUnit Started (PHPUnit %s using %s) |
| 17 | +Test Runner Configured |
| 18 | +Event Facade Sealed |
| 19 | +Test Suite Loaded (5 tests) |
| 20 | +Test Runner Started |
| 21 | +Test Suite Sorted |
| 22 | +Test Suite Filtered (4 tests) |
| 23 | +Test Runner Execution Started (4 tests) |
| 24 | +Test Suite Started (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest, 4 tests) |
| 25 | +Test Preparation Started (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testX) |
| 26 | +Test Prepared (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testX) |
| 27 | +Test Passed (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testX) |
| 28 | +Test Finished (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testX) |
| 29 | +Test Preparation Started (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testY) |
| 30 | +Test Prepared (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testY) |
| 31 | +Test Passed (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testY) |
| 32 | +Test Finished (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testY) |
| 33 | +Test Preparation Started (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testXY) |
| 34 | +Test Prepared (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testXY) |
| 35 | +Test Passed (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testXY) |
| 36 | +Test Finished (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testXY) |
| 37 | +Test Preparation Started (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testZ) |
| 38 | +Test Prepared (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testZ) |
| 39 | +Test Passed (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testZ) |
| 40 | +Test Finished (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest::testZ) |
| 41 | +Test Suite Finished (PHPUnit\TestFixture\GroupsWithAndLogic\MultiGroupTest, 4 tests) |
| 42 | +Test Runner Execution Finished |
| 43 | +Test Runner Finished |
| 44 | +PHPUnit Finished (Shell Exit Code: 0) |
0 commit comments