Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

PhpProcessTest.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 1.28 KiB


01  <?php
02   
03  /*
04   * This file is part of the Symfony package.
05   *
06   * (c) Fabien Potencier <fabien@symfony.com>
07   *
08   * For the full copyright and license information, please view the LICENSE
09   * file that was distributed with this source code.
10   */
11   
12  namespace Symfony\Component\Process\Tests;
13   
14  use PHPUnit\Framework\TestCase;
15  use Symfony\Component\Process\PhpProcess;
16   
17  class PhpProcessTest extends TestCase
18  {
19      public function testNonBlockingWorks()
20      {
21          $expected = 'hello world!';
22          $process = new PhpProcess(<<<PHP
23  <?php echo '$expected';
24  PHP
25          );
26          $process->start();
27          $process->wait();
28          $this->assertEquals($expected, $process->getOutput());
29      }
30   
31      public function testCommandLine()
32      {
33          $process = new PhpProcess(<<<'PHP'
34  <?php echo phpversion().PHP_SAPI;
35  PHP
36          );
37   
38          $commandLine = $process->getCommandLine();
39   
40          $process->start();
41          $this->assertStringContainsString($commandLine, $process->getCommandLine(), '::getCommandLine() returns the command line of PHP after start');
42   
43          $process->wait();
44          $this->assertStringContainsString($commandLine, $process->getCommandLine(), '::getCommandLine() returns the command line of PHP after wait');
45   
46          $this->assertSame(\PHP_VERSION.\PHP_SAPI, $process->getOutput());
47      }
48  }
49