Index: Application/Ringtoets/src/Application.Ringtoets.MigrationConsole/RingtoetsMigrationConsole.cs =================================================================== diff -u -r896b05735de6229ba6108507c79d8207fa3f2d26 -r32ad96a8c67c5d12fe9c56530c2db04f7b9c8ba9 --- Application/Ringtoets/src/Application.Ringtoets.MigrationConsole/RingtoetsMigrationConsole.cs (.../RingtoetsMigrationConsole.cs) (revision 896b05735de6229ba6108507c79d8207fa3f2d26) +++ Application/Ringtoets/src/Application.Ringtoets.MigrationConsole/RingtoetsMigrationConsole.cs (.../RingtoetsMigrationConsole.cs) (revision 32ad96a8c67c5d12fe9c56530c2db04f7b9c8ba9) @@ -55,8 +55,8 @@ protected override void DisplayAllCommands() { base.DisplayAllCommands(); - ShowMigrateCommand(); ShowSupportedCommand(); + ShowMigrateCommand(); } #region Commands Index: Application/Ringtoets/test/Application.Ringtoets.MigrationConsole.Test/RingtoetsMigrationConsoleTest.cs =================================================================== diff -u -r896b05735de6229ba6108507c79d8207fa3f2d26 -r32ad96a8c67c5d12fe9c56530c2db04f7b9c8ba9 --- Application/Ringtoets/test/Application.Ringtoets.MigrationConsole.Test/RingtoetsMigrationConsoleTest.cs (.../RingtoetsMigrationConsoleTest.cs) (revision 896b05735de6229ba6108507c79d8207fa3f2d26) +++ Application/Ringtoets/test/Application.Ringtoets.MigrationConsole.Test/RingtoetsMigrationConsoleTest.cs (.../RingtoetsMigrationConsoleTest.cs) (revision 32ad96a8c67c5d12fe9c56530c2db04f7b9c8ba9) @@ -41,7 +41,7 @@ environmentControl = new TestEnvironmentControl(); EnvironmentControl.Instance = environmentControl; } - + [Test] public void Constructor_ExpectedProperties() { @@ -58,11 +58,12 @@ // Setup var console = new RingtoetsMigrationConsole(); string consoleText; - + using (var consoleOutput = new ConsoleOutput()) { // Call - console.ExecuteConsoleTool(new string[] { }); + console.ExecuteConsoleTool(new string[] + {}); consoleText = consoleOutput.GetConsoleOutput(); } @@ -86,7 +87,6 @@ }; string consoleText; - using (var consoleOutput = new ConsoleOutput()) { // Call @@ -206,17 +206,16 @@ + "MIGRATIEHULPPROGRAMMA -h" + Environment.NewLine + "MIGRATIEHULPPROGRAMMA --help" + Environment.NewLine + " Geeft deze informatie weer." + Environment.NewLine + Environment.NewLine + + "MIGRATIEHULPPROGRAMMA bronprojectpad" + Environment.NewLine + + " Controleert of het projectbestand dat te vinden is in het bronproject" + + Environment.NewLine + + " pad gemigreerd kan worden." + Environment.NewLine + Environment.NewLine + "MIGRATIEHULPPROGRAMMA bronprojectpad doelprojectpad" + Environment.NewLine + " Voert de migratie uit van het projectbestand dat te vinden is in het " + Environment.NewLine + " bronprojectpad en slaat het resulterende projectbestand op in het doe" + Environment.NewLine - + " lprojectpad." - + Environment.NewLine + Environment.NewLine - + "MIGRATIEHULPPROGRAMMA bronprojectpad" + Environment.NewLine - + " Controleert of het projectbestand dat te vinden is in het bronproject" - + Environment.NewLine - + " pad gemigreerd kan worden." + Environment.NewLine + Environment.NewLine; + + " lprojectpad." + Environment.NewLine + Environment.NewLine; } } } \ No newline at end of file