diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-05-20 13:12:31 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-05-20 13:12:31 +0300 |
| commit | a4e2f6753c6c2612444847fd12f1e973a86a4aa4 (patch) | |
| tree | 8f97d4ded431e366d8ec5e65172e2f80441dd53f /MundusTests/ApplicationSetup.cs | |
| parent | 09d14d1f330d71bc69a4e9fedace680f9c69de3b (diff) | |
| download | Mundus-a4e2f6753c6c2612444847fd12f1e973a86a4aa4.tar Mundus-a4e2f6753c6c2612444847fd12f1e973a86a4aa4.tar.gz Mundus-a4e2f6753c6c2612444847fd12f1e973a86a4aa4.zip | |
Fixed test SetUps and TearDowns. Did tests for Inventory and MobTile (Service/Mobs). Did some minor changes to the program.
Diffstat (limited to 'MundusTests/ApplicationSetup.cs')
| -rw-r--r-- | MundusTests/ApplicationSetup.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/MundusTests/ApplicationSetup.cs b/MundusTests/ApplicationSetup.cs new file mode 100644 index 0000000..bd39d97 --- /dev/null +++ b/MundusTests/ApplicationSetup.cs @@ -0,0 +1,20 @@ +using Mundus.Data;
+using Mundus.Data.Windows;
+using NUnit.Framework; +using Gtk; + +[SetUpFixture] +public static class ApplicationSetup { + [OneTimeSetUp] + public static void SetUp() { + Application.Init(); + WI.CreateInstances(); + DataBaseContexts.CreateInstances(); + WI.WNewGame.OnBtnGenerateClicked(null, null); + } + + [OneTimeTearDown] + public static void TearDown() { + Application.Quit(); + } +} |
