Skip to content

Commit

Permalink
Add regression test for #274
Browse files Browse the repository at this point in the history
# Conflicts:
#	composer.lock
  • Loading branch information
Jean85 authored and ilario-pierbattista committed Oct 2, 2024
1 parent 31739b6 commit 090779b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/Functional/Runner/ChunkFileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@

class ChunkFileTest extends BaseIntegrationTestCase
{
public function testChunkedPlusTestSuiteOptions(): void
{
$this->setOption('chunk-size', '2');
$this->setOption('testsuite', 'stubs');
$this->setOption('debug', '1');
$this->loadContainer();

$this->executeRunner();

$output = $this->getConsoleOutput();
$this->assertStringNotContainsString('--testsuite', $output->getOutput());
$this->assertStringContainsString('--configuration', $output->getOutput());
}

public function testChunkedAllStubsSuite(): void
{
$chunkCount = 8;
Expand Down

0 comments on commit 090779b

Please sign in to comment.