1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-16 10:14:05 +02:00

Remove dummy test from CommonTest.php

This commit is contained in:
Daniel St. Jules
2013-08-06 22:16:53 -04:00
parent 9d4ca96528
commit 7a64dad935

View File

@@ -1,6 +1,6 @@
<?php <?php
class CommonTest extends PHPUnit_Framework_TestCase abstract class CommonTest extends PHPUnit_Framework_TestCase
{ {
public function stringsForUpperCaseFirst() public function stringsForUpperCaseFirst()
{ {
@@ -831,10 +831,4 @@ class CommonTest extends PHPUnit_Framework_TestCase
return $testData; return $testData;
} }
// A test is required so as not to throw an error
// This is a lot cleaner than using PHPUnit's mocks to spy
public function test() {
$this->assertTrue(true);
}
} }