public function testGetBuildProperty()
 {
     $table = new Table();
     $this->assertEmpty($table->getBuildProperty('propel.foo.bar'));
     $database = $this->getDatabaseMock('bookstore');
     $database->expects($this->once())->method('getBuildProperty')->with('propel.foo.bar')->will($this->returnValue('baz'));
     $table->setDatabase($database);
     $this->assertSame('baz', $table->getBuildProperty('propel.foo.bar'));
 }