/**
  * @depends	testBuildSqlNoAttrsLowerCaseUpperCase
  * @return	null
  */
 public function testbuildSqlAutoIncrement()
 {
     $this->assertFalse($this->type->isUpperCase());
     $this->type->enableAutoIncrement();
     $expected = "{$this->type->getSqlString()} auto_increment";
     $this->assertEquals($expected, $this->type->buildSql());
     $this->type->enableUpperCase();
     $this->assertEquals(strtoupper($expected), $this->type->buildSql());
 }