mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
907538875b
cleaned up CSS, changed template to output clean XHTML 5, added unit tests for 60% of the code, found a few bugs by doing that and fixed them
9 lines
244 B
PHP
9 lines
244 B
PHP
<?php
|
|
class autoTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testAutoloaderReturnsFalseWhenCallingNonExistingClass()
|
|
{
|
|
$this->assertFalse(auto::loader('foo2501bar42'), 'calling non existent class');
|
|
}
|
|
}
|