Download the PHP package anthonyedmonds/laravel-testing-traits without Composer

On this page you can find all versions of the php package anthonyedmonds/laravel-testing-traits. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-testing-traits

Laravel Testing Traits

Make testing easier with this collection of testing traits!

Installation

  1. Add the library using Composer:

  2. The service provider will be automatically registered. If required, you can manually register the service provider by adding it to your bootstrap/providers.php:

  3. If you are not using the standard App\Models\User model, publish the config file using Artisan:

    Then update the config to point to your model:

Usage

  1. Add the desired traits to your Tests\TestCase.php class
  2. Use the test methods in your tests:

Available traits

Trait Purpose Methods
AssertsActivities Test whether a Spatie/ActivityLog has been recorded assertActivity
AssetsFlashMessages Test whether a Laracasts/Flash message has been set assertFlashed
AssertsFormRequests Test whether a FormRequest validates as expected assertFormRequestPasses, assertFormRequestFails
AssertsOrder Test whether a Collection is in order assertAscending, assertDescending
AssertsPolicies Test whether a Policy works as expected assertPolicyAllows, assertPolicyDenies
AssertsRelationships Test whether a Model relationship loads as expected assertBelongsTo, assertBelongsToMany, assertHasMany, assertHasOne
AssertsResults Test whether a Collection contains the expected values assertResultsMatch, assertResultsContain, assertResultsDontContain, assertResultsCount
AssertsValidationRules Test whether a custom Rule works as expected assertRulesPasses, assertRuleFails
FakesRoutes Fool Laravel into thinking you are on a specific route fakeRoute
GetsRawCsvs Process a raw CSV into an array for parsing processRawCsv
GetsStreamedResponses Intercept a StreamedResponse for testing files getStreamedResponse
SetsViewVariables Set View variables for testing rendered blades, such as with Mojito setRequestOld, setViewAttributes, setViewErrors, setViewSlot
SignsInUsers Sign a User in with relevant Spatie/LaravelPermission Roles and Permissions signIn, signInAs, signInWithRole, signInWithPermission

All versions of laravel-testing-traits with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
laravel/framework Version ^11
phpunit/phpunit Version ^11
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package anthonyedmonds/laravel-testing-traits contains the following files

Loading the files please wait ....