public function testCreateNewSchema()
 {
     $platform = $this->getPlatformMock();
     $schema = new Schema($platform);
     $this->assertSame($platform, $schema->getPlatform());
     $this->assertCount(0, $schema->getDatabases());
     $this->assertFalse($schema->hasMultipleDatabases());
 }