oscarricardosan/phpunitg_laravel

Phpunit test management package, in multiple app in local environment.
635
Install
composer require oscarricardosan/phpunitg_laravel
Latest Version:v1.0.24
License:MIT
Last Updated:Apr 23, 2018
Links: GitHub  ·  Packagist
Maintainer: oscarricardosan

PhpunitG Package

Client package for https://github.com/oscarricardosan/phpunitg-laravel-dashboard .

Install

  1. In your terminal:
$ composer require --dev oscarricardosan/phpunitg_laravel
  1. When you register the application with https://github.com/oscarricardosan/phpunitg-laravel-dashboard it generates a token which you must put in the .env of the application.
PHPUNITG_TOKEN=Generated_token
  1. Add the service provider to your config/app.php file:
 \Oscarricardosan\PhpunitgLaravel\OscarricardosanPhpunitgServiceProvider::class
  1. Select the tests that you want to be scanned and put @phpunitG in phpDoc comments, with this you indicate to the package that this class must be scanned.

Optional, after @phpunitG you can put text that will serve as a tag name, if you do not put it it will remain as "No Tag".

<?php namespace App;

/**
* @phpunitG Tag name
*/
class ExampleTest extends TestCase{...My code...}
  1. In the methods that will be scanned put @test
/**
* @test
*/
public function is_index_working(){...My code...}

Related Packages

doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444
laravel/serializable-closure

Laravel Serializable Closure provides an easy and secure way to serialize closur...

404,034,618 608
nunomaduro/collision

Cli error handling for console/command-line PHP applications.

387,976,821 4,658