1. Go to this page and download the library: Download jbzoo/phpunit library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jbzoo / phpunit example snippets
namespace JBZoo\PHPUnit;
/**
* Class PackageTest
* @package JBZoo\PHPUnit
*/
class PackageTest extends PHPUnit
{
public function testSimple()
{
// Boolean
isTrue(true);
isFalse(false);
// null
isNull(null);
// Check is variable empty
isEmpty(0);
isEmpty('');
isEmpty(null);
isEmpty('0');
isEmpty(.0);
isEmpty(array());
// Equals
is(1, true);
is(array(1, 2, 3), array(1, 2, 3));
isSame(array(1, 2, 3), array(1, 2, 3));
// Array, Object etc
isKey('test', array('test' => true));
isNotKey('undef-kest', array('test' => true));
isAttr('test', (object)array('test' => true));
isNotAttr('undef-test', (object)array('test' => true));
// Instance Of ...
isClass(JBZoo\PHPUnit\PHPUnit::class, $this);
// Count props
isCount(0, array());
isCount(1, array(1));
isCount(2, array(1, 3));
// regExp
isLike('#t.st#i', 'TESTO');
isNotLike('#teeest#i', 'TESTO');
// Strings
isContain('t', 'test');
isNotContain('x', 'test');
// Filesystem
isFileEq(__FILE__, __FILE__);
isFile(__FILE__);
isDir(__DIR__);
}
public function testSkip()
{
skip('Some reason to skip this test');
}
public function testFail()
{
fail('Some reason to fail this test');
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.