diff --git a/Tests/Cosmos.TestRunner.UI/App.config b/Tests/Cosmos.TestRunner.UI/App.config new file mode 100644 index 000000000..8e1564635 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Tests/Cosmos.TestRunner.UI/App.xaml b/Tests/Cosmos.TestRunner.UI/App.xaml new file mode 100644 index 000000000..7bb1dceeb --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/App.xaml @@ -0,0 +1,8 @@ + + + + + diff --git a/Tests/Cosmos.TestRunner.UI/App.xaml.cs b/Tests/Cosmos.TestRunner.UI/App.xaml.cs new file mode 100644 index 000000000..1dbb79337 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Cosmos.TestRunner.UI +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj b/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj new file mode 100644 index 000000000..a32fc9d67 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/Cosmos.TestRunner.UI.csproj @@ -0,0 +1,113 @@ + + + + + Debug + AnyCPU + {0B20C26F-CA92-4D88-8211-EC7B0A261337} + WinExe + Properties + Cosmos.TestRunner.UI + Cosmos.TestRunner.UI + v4.5 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + + + MainWindow.xaml + Code + + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + + {758faf24-9974-4db8-82ef-1b64daf2f0bc} + Cosmos.TestRunner.Core + + + + + \ No newline at end of file diff --git a/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs b/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs new file mode 100644 index 000000000..fa44e10a4 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/ListViewLogMessage.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Cosmos.TestRunner.UI +{ + public class ListViewLogMessage + { + public ListViewLogMessage(string _date, string _level, string _message) + { + Date = _date; + Level = _level; + Message = _message; + } + + public string Date + { + get; + set; + } + + public string Level + { + get; + set; + } + + public string Message + { + get; + set; + } + } +} diff --git a/Tests/Cosmos.TestRunner.UI/MainWindow.xaml b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml new file mode 100644 index 000000000..dd49167d1 --- /dev/null +++ b/Tests/Cosmos.TestRunner.UI/MainWindow.xaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + +