Download the PHP package friendsofcake/cakephp-test-utilities without Composer

On this page you can find all versions of the php package friendsofcake/cakephp-test-utilities. 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 cakephp-test-utilities

Test utilities

This package contains support traits to ease unit testing.

Installing via composer

You should install this package into your project using composer. To do so you can run the following command:

Traits

At this point there are two traits:

  1. AccessibilityHelperTrait : Gain access protected properties and methods.
  2. CompareTrait : Assert methods, comparing to files for: HTML, JSON, XML

AccessibilityHelperTrait

This trait gains you access to protected properties and methods. You don't need of a new class with pass-through methods. It uses reflection to achieve this.

Setup

Add the trait at the top of your test case:

Now that you have the trait you need to set which object you want to access. You can do this globally for the entire test in setUp() or in your test methods:

Protected properties

You can get and set the protected properties:

Protected methods

You can directly call protected methods:

CompareTrait

This trait helps with comparing test results as string

Setup

Add the trait at the top of your test case and define the _compareBasePath property so the trait knows where to look for comparison files:

Usage

Each of the methods acts similar to the core assertSameAsFile method:

See Cake's docs for more details on usage of assertSameAsFile on which these methods are based.


All versions of cakephp-test-utilities with dependencies

PHP Build Version
Package Version
Requires cakephp/cakephp Version ^5.0
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 friendsofcake/cakephp-test-utilities contains the following files

Loading the files please wait ....