dcodeteam/phpunit-for-bitrix

Based on https://github.com/osotov/phpunit-for-bitrix. Base test class for unit tests inside 1C-Bitrix framework environment

v0.2.2 2018-05-21 10:58 UTC

This package is not auto-updated.

Last update: 2024-10-02 20:58:13 UTC


README

Based on osotov/phpunit-for-bitrix.

Base test class for unit tests inside 1C-Bitrix framework environment

note

This package requires latest versions of php (>= 5.5.9) and phpunit (>=4.7.0 <7.0.0)

It might work fine with latest versions (7+) but was tested only with phpunit ^6 (6.5.8).

installation

To install package, run the command below and you will get the latest version

composer require dcodeteam/phpunit-for-bitrix

Copy phpunit.xml.dist file from package to document root. Set up your tests directory inside tag. If you want to use another bootstrap file set it instead default inside bootstrap attribute.

usage

If you use old phpunit (>5.0.0) extend Dcode\Bitrix\TestCase class in your test cases.

This class uses mock framework Mockery to ease mock and stub creation and it uses Faker to help you with creation of dummy data.

For new php unit (>=5.0.0) use \PHPUnit\Framework\TestCase.