Download the PHP
package contao/test-case without Composer
On this page you can find all versions of the php package
contao/test-case. 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.
Contao is an open source PHP content management system for people who want a professional website that is easy to
maintain. Visit the project website for more information.
The Contao test case provides a PHPUnit test case with some useful methods for testing Contao. Run
php composer.phar require --dev contao/test-case to install the package and then use it in your test classes:
Mocking the Symfony container
The getContainerWithContaoConfiguration() method mocks a Symfony container with the default configuration of the
Contao core extension.
You can also set a project directory:
Mocking the Contao framework
The mockContaoFramework) method mocks an initialized Contao framework.
The method automatically adds a Config adapter with the Contao settings:
You can optionally add more adapters as argument:
The given Config adapter will overwrite the default Config adapter.
Mocking an adapter
The mockAdapter() method will mock an adapter with the given methods.
Adapters with a simple return value like above can be further simplified:
This code does exactly the same as the code above.
Mocking a class with magic properties
The mockClassWithProperties() method mocks a class that uses magic __set() and __get() methods to manage
properties.
If the class to be mocked is read-only, you can optionally pass the properties as constructor argument:
If you need to call a method of the original class, you can pass the method name as third argument. The resulting mock
object will be a partial mock object without the given method(s).
Mocking a token storage
The mockTokenStorage() mocks a token storage with a token returning either a Contao back end or front end user.
Using a temporary directory
The getTempDir() method creates a temporary directory based on the test class name and returns its path.
The directory will be removed automatically after the tests have been run. For this to work, please make sure to always
call the parent tearDownAfterClass() method if you define the method in your test class!
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 contao/test-case contains the following files
Loading the files please wait ....
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.