PHP code example of axsor / laravel-executor

1. Go to this page and download the library: Download axsor/laravel-executor library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

axsor / laravel-executor example snippets


'providers' => [
    Axsor\Executor\ExecutorServiceProvider::class,
],

use Axsor\Executor\Facades\Executor;

class MyTests extends TestCase
{
    public function test_my_functionality()
    {
        Executor::shouldReceive('run')->with('ping google.com', 1)->once()->andReturn("PING google.com (172.217.17.14) 56(84) bytes of data.
        64 bytes from mad07s09-in-f14.1e100.net (172.217.17.14): icmp_seq=1 ttl=51 time=25.9 ms");
        
        $result = 1;
        $return = Executor::run('ping google.com', $result);
        
        $this->assertEquals(1, $result);
        $this->assertEquals("PING google.com (172.217.17.14) 56(84) bytes of data.
64 bytes from mad07s09-in-f14.1e100.net (172.217.17.14): icmp_seq=1 ttl=51 time=25.9 ms", $return);
    }
}