diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-05-22 12:59:32 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-05-22 12:59:32 +0300 |
| commit | 747aa00440eb9b219d989a536b0ff0c959b35143 (patch) | |
| tree | f8b866f8e95c4597cae6b246746c23967e03def6 /MundusTests/DataTests/DataBaseContextsTests.cs | |
| parent | a4e2f6753c6c2612444847fd12f1e973a86a4aa4 (diff) | |
| download | Mundus-747aa00440eb9b219d989a536b0ff0c959b35143.tar Mundus-747aa00440eb9b219d989a536b0ff0c959b35143.tar.gz Mundus-747aa00440eb9b219d989a536b0ff0c959b35143.zip | |
Completed all tests (there is still some code that can be tested, but it will be very hard to do so and I am skipping it for now).
Diffstat (limited to 'MundusTests/DataTests/DataBaseContextsTests.cs')
| -rw-r--r-- | MundusTests/DataTests/DataBaseContextsTests.cs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/MundusTests/DataTests/DataBaseContextsTests.cs b/MundusTests/DataTests/DataBaseContextsTests.cs index b4f6f56..2c6e977 100644 --- a/MundusTests/DataTests/DataBaseContextsTests.cs +++ b/MundusTests/DataTests/DataBaseContextsTests.cs @@ -1,12 +1,14 @@ -using System; -using Mundus.Data; -using NUnit.Framework; +namespace MundusTests.DataTests +{ + using Mundus.Data; + using NUnit.Framework; -namespace MundusTests.DataTests { [TestFixture] - public static class DataBaseContextsTests { + public static class DataBaseContextsTests + { [Test] - public static void CreatesInstances() { + public static void CreatesInstances() + { Assert.IsNotNull(DataBaseContexts.SContext, "Doesn't create SContext instance"); Assert.IsNotNull(DataBaseContexts.LContext, "Doesn't create LContext instance"); Assert.IsNotNull(DataBaseContexts.UContext, "Doesn't create UContext instance"); |
