Esempio n. 1
0
 /**
  * @depends	testBuildSqlNoAttrsLowerCaseUpperCase
  * @return	null
  */
 public function testbuildSqlZeroFill()
 {
     $this->assertFalse($this->type->isUpperCase());
     $this->type->enableZeroFill();
     $expected = "{$this->type->getSqlString()} zerofill";
     $this->assertEquals($expected, $this->type->buildSql());
     $this->type->enableUpperCase();
     $this->assertEquals(strtoupper($expected), $this->type->buildSql());
 }