HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/stempel.komma.pro/vendor/phpbench/phpbench/tests/System/ArchiveTest.php
<?php

/*
 * This file is part of the PHPBench package
 *
 * (c) Daniel Leech <daniel@dantleech.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 */

namespace PhpBench\Tests\System;

class ArchiveTest extends SystemTestCase
{
    /**
     * It should show a report for a specific run.
     */
    public function testArchive()
    {
        $this->getResult(null, ' --store');
        $this->getResult(null, ' --store');
        $process = $this->phpbench(
            'archive'
        );

        $this->assertExitCode(0, $process);
        $output = $process->getOutput();

        // it should show two dots, one for each result
        $this->assertContains(<<<'EOT'
..
EOT
        , $output);

        $process = $this->phpbench(
            'archive --restore'
        );

        $output = $process->getOutput();
        $this->assertContains(<<<'EOT'
Restoring 0 of 2 suites
EOT
        , $output);
    }
}