From 747aa00440eb9b219d989a536b0ff0c959b35143 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Fri, 22 May 2020 12:59:32 +0300 Subject: 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). --- MundusTests/DataTests/DataBaseContextsTests.cs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'MundusTests/DataTests/DataBaseContextsTests.cs') 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"); -- cgit v1.2.3