codekandis/phpunit

`codekandis/phpunit` is a library providing any several wrapper and helper classes for the package `PHPUnit`.

5.0.0 2025-03-29 09:13 UTC

This package is auto-updated.

Last update: 2025-03-29 09:14:40 UTC


README

Version License Minimum PHP Version

This library provides several wrappers and helper classes for the package phpunit/phpunit.

Index

Installation

Install the latest version with

$ composer require --dev codekandis/phpunit

How to use

Using the test case wrapper

Create a new test case and inherit it from the wrapper TestCase.

<?php declare( strict_types = 1 );
use CodeKandis\PhpUnit\TestCase;

class FooTest extends TestCase
{
}