1414 * @link http://www.phpbu.de/
1515 * @since Class available since Release 6.0.12
1616 */
17- class WordpressTest extends TestCase
17+ class WordPressTest extends TestCase
1818{
1919 /**
2020 * Tests Wordpress::setup
2121 */
2222 public function testSetup ()
2323 {
24- $ arr = new Wordpress ();
24+ $ arr = new WordPress ();
2525 $ arr ->setup (['file ' => PHPBU_TEST_FILES . '/misc/wp-config.php ' ]);
2626
2727 $ this ->assertTrue (true );
@@ -33,7 +33,7 @@ public function testSetup()
3333 public function testSetupFail ()
3434 {
3535 $ this ->expectException ('phpbu\App\Exception ' );
36- $ arr = new Wordpress ();
36+ $ arr = new WordPress ();
3737 $ arr ->setup (['file ' => 'wp-config.php ' ]);
3838 }
3939
@@ -42,7 +42,7 @@ public function testSetupFail()
4242 */
4343 public function testGetValue ()
4444 {
45- $ arr = new Wordpress ();
45+ $ arr = new WordPress ();
4646 $ arr ->setup (['file ' => PHPBU_TEST_FILES . '/misc/wp-config.php ' ]);
4747
4848 $ dbName = $ arr ->getValue ('DB_NAME ' );
@@ -57,7 +57,7 @@ public function testGetValue()
5757 public function testGetValueFail ()
5858 {
5959 $ this ->expectException ('phpbu\App\Exception ' );
60- $ arr = new Wordpress ();
60+ $ arr = new WordPress ();
6161 $ arr ->setup (['file ' => PHPBU_TEST_FILES . '/misc/wp-config.php ' ]);
6262
6363 $ arr ->getValue ('DB_FAIL ' );
0 commit comments