99 * file that was distributed with this source code.
1010 */
1111
12- namespace Dflydev \ApacheMimeTypes ;
12+ namespace Dflydev \ApacheMimeTypes \ Test ;
1313
1414/**
1515 * Flat Repository Test
1616 *
1717 * @author Beau Simensen <beau@dflydev.com>
1818 */
19- abstract class AbstractRepositoryTest extends \PHPUnit_Framework_TestCase
19+ abstract class AbstractRepositoryTestCase extends \PHPUnit \ Framework \TestCase
2020{
2121 abstract protected function createDefaultRepository ();
2222 abstract protected function createRepository ();
@@ -26,6 +26,7 @@ public function testDefaultCss()
2626 $ repository = $ this ->createDefaultRepository ();
2727
2828 if (null === $ repository ) {
29+ $ this ->assertTrue (true );
2930 return ;
3031 }
3132
@@ -41,6 +42,7 @@ public function testDefaultHtml()
4142 $ repository = $ this ->createDefaultRepository ();
4243
4344 if (null === $ repository ) {
45+ $ this ->assertTrue (true );
4446 return ;
4547 }
4648
@@ -58,6 +60,7 @@ public function testDefaultMissing()
5860 $ repository = $ this ->createDefaultRepository ();
5961
6062 if (null === $ repository ) {
63+ $ this ->assertTrue (true );
6164 return ;
6265 }
6366
@@ -71,6 +74,7 @@ public function testDefaultDumpTypeToExtensions()
7174 $ repository = $ this ->createDefaultRepository ();
7275
7376 if (null === $ repository ) {
77+ $ this ->assertTrue (true );
7478 return ;
7579 }
7680
@@ -84,6 +88,7 @@ public function testDefaultDumpExtensionToType()
8488 $ repository = $ this ->createDefaultRepository ();
8589
8690 if (null === $ repository ) {
91+ $ this ->assertTrue (true );
8792 return ;
8893 }
8994
@@ -97,6 +102,7 @@ public function testMissing()
97102 $ repository = $ this ->createRepository ();
98103
99104 if (null === $ repository ) {
105+ $ this ->assertTrue (true );
100106 return ;
101107 }
102108
@@ -110,6 +116,7 @@ public function testFabricated()
110116 $ repository = $ this ->createRepository ();
111117
112118 if (null === $ repository ) {
119+ $ this ->assertTrue (true );
113120 return ;
114121 }
115122
@@ -124,6 +131,7 @@ public function testDumpTypeToExtensions()
124131 $ repository = $ this ->createRepository ();
125132
126133 if (null === $ repository ) {
134+ $ this ->assertTrue (true );
127135 return ;
128136 }
129137
@@ -139,6 +147,7 @@ public function testDumpExtensionToType()
139147 $ repository = $ this ->createRepository ();
140148
141149 if (null === $ repository ) {
150+ $ this ->assertTrue (true );
142151 return ;
143152 }
144153
0 commit comments