Esempio n. 1
0
 /**
  * @depends	testIsEnableDisableUpperCase
  */
 public function testBuildSql()
 {
     $this->assertEquals(strtolower($this->sqlString), $this->type->buildSql(), 'unless isUppercase is false so should be lowercase');
     $this->type->enableUppercase();
     $this->assertEquals(strtoupper($this->sqlString), $this->type->buildSql(), 'should be all uppercase');
 }