Beispiel #1
0
 /**
  * @covers ::fixOutputFormat
  */
 public function test_fixOutputFormat()
 {
     // Given
     $config = $this->getSchemaConfig('SCHEMA1');
     // When
     $config = $this->cmd->fixOutputFormat($config);
     // Then
     $this->assertSame(Schema::FORMAT_PHP_FILE, $config[Schema::CONFIG_KEY_EXPORT_FORMAT]);
 }