Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

A PHPUnit test case class with additional functionality.

License

Notifications You must be signed in to change notification settings

kherge-archive/php-phpunit-testcase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHPUnit TestCase

Build Status

A PHPUnit test case class and trait with additional functionality.

Summary

The TestCase class and Extras trait provide additional methods for performing basic, repetitive tasks such as:

  • creating and deleting temporary files and directories
  • calling protected and private methods
  • retrieving and setting protected and private properties

NOTE Both TestCase and Extras are identical, except the former being a class and the latter being a trait.

Installation

Add it to your list of Composer dependencies:

$ composer require herrera-io/phpunit-test-case=1.*

Usage

The TestCase class

<?php

class MyTestCase extends Herrera\PHPUnit\TestCase
{
    // my tests
}

The Extras trait

<?php

class MyTestCase extends My\Own\Custom\TestCase
{
    use Herrera\PHPUnit\Extras;

    // my tests
}

NOTE If your test class provides its own tearDown() method, make sure to call the class's or trait's tearDown() method as well. TestCase and Extras uses the tear down process to clean up temporary files and directories.

About

A PHPUnit test case class with additional functionality.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages