Skip to content

Commit

Permalink
dummy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilFreelancer committed Apr 9, 2017
1 parent a94db80 commit f4574f6
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/Arrays.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
require_once(__DIR__ . '/../src/Arrays.php');

use PHPUnit\Framework\TestCase;
use DrMVC\Helpers\Arrays;

class ArraysTest extends TestCase
{
public function testDefault()
{
return true;
}

}
14 changes: 14 additions & 0 deletions tests/Generators.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
require_once(__DIR__ . '/../src/Generators.php');

use PHPUnit\Framework\TestCase;
use DrMVC\Helpers\Generators;

class GeneratorsTest extends TestCase
{
public function testDefault()
{
return true;
}

}
14 changes: 14 additions & 0 deletions tests/HTML.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
require_once(__DIR__ . '/../src/HTML.php');

use PHPUnit\Framework\TestCase;
use DrMVC\Helpers\HTML;

class HTMLTest extends TestCase
{
public function testDefault()
{
return true;
}

}
14 changes: 14 additions & 0 deletions tests/UUID.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
require_once(__DIR__ . '/../src/UUID.php');

use PHPUnit\Framework\TestCase;
use DrMVC\Helpers\Arrays;

class UUIDTest extends TestCase
{
public function testDefault()
{
return true;
}

}

0 comments on commit f4574f6

Please sign in to comment.