Ouzo\Core\Tools\Model\Template\MySqlDialectTest::shouldMapIntQslDataTypeToPhpDataType PHP Method

shouldMapIntQslDataTypeToPhpDataType() public method

    public function shouldMapIntQslDataTypeToPhpDataType()
    {
        //given
        $dialect = new MySqlDialect('test');
        //when
        $phpIntType1 = $dialect->dataTypeToPhpType('tinyint');
        $phpIntType2 = $dialect->dataTypeToPhpType('int');
        //then
        $this->assertEquals('int', $phpIntType1);
        $this->assertEquals('int', $phpIntType2);
    }