public function testCreateInstanceWithoutSchemaParam() { $table = new Table('foo'); $this->assertEquals('foo', $table->getName()); $schema = new Schema('public'); $expected = $schema->getName(); $this->assertEquals($expected, $table->getSchema()->getName()); }
public function testCreateInstanceWithSchemaName() { $schema = new Schema('foo'); $this->assertEquals('foo', $schema->getName()); }