doEdit( 'FoobarContent', '', EDIT_NEW, false, User::newFromName( 'UTSysop' ) ); } function testBootstrapCreation() { $article = new Article( Title::newFromText("UTPage") ); $this->assertEquals("UTContent", $article->fetchContent(), "Automatic main page creation"); $article = new Article( Title::newFromText("Foobar") ); $this->assertEquals("FoobarContent", $article->fetchContent(), "addDBData() adds to the database"); } }