Redaxscript\Tests\InstallerTest::testRawCreate PHP Method

testRawCreate() public method

testRawCreate
Since: 2.4.0
public testRawCreate ( )
    public function testRawCreate()
    {
        /* setup */
        $installer = new Installer($this->_config);
        $installer->init();
        $installer->rawCreate();
        /* actual */
        $actual = Db::countTablePrefix();
        /* compare */
        $this->assertEquals(8, $actual);
    }