PHP code example of paki / laravel-auto-test

1. Go to this page and download the library: Download paki/laravel-auto-test 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/ */

    

paki / laravel-auto-test example snippets


/**
 * @Testable
 */
public function someMethod()
{
   // Logique de la méthode
}

/**
 * @Testable
 * @TestResponse "Success"
 */
public function someMethod()
{
   // Logique de la méthode
}

/**
 * @Testable
 * @assertion assertNull
 */
public function someOtherMethod()
{
   // Logique de la méthode
}

/**
 * @Testable
 * @TestResponse "200 OK"
 * @assertion assertEquals
 */
public function getUserDetails()
{
   // Logique de la méthode
}

  /**
     * @Testable
     * @TestInput: {"name": "paki","message":"test message"}
     * @AssertStatus 201
     */
    public function create(Request $request)
    {
        $this->validate($request, [
            'name' => "

  /**
     * @Testable
     * @TestResponse "User Created"
     * @TestParam: name='test'
     */
    public function createUser($name)
    {
        return "User Created";
    }

public function testMethodName()
{
    $instance = new SomeService();
    $result = $instance->methodName();

    // L'assertion choisie (par défaut assertNotNull)
    $this->assertEquals('Success', $result);
}
bash
   php artisan vendor:publish --provider="Paki\AutoTest\TestGeneratorServiceProvider"
   
bash
   php artisan generate:tests
   
bash
   php artisan generate:tests
   
bash
   php artisan generate:tests --mock="App\\Services\\SomeService"
   
bash
   php artisan generate:tests --performance=true