2using System.Collections.Generic;
8using TestClass = NUnit.Framework.TestFixtureAttribute;
9using TestInitialize = NUnit.Framework.SetUpAttribute;
10using TestCleanup = NUnit.Framework.TearDownAttribute;
11using TestMethod = NUnit.Framework.TestAttribute;
12using TestSetup = NUnit.Framework.SetUpAttribute;
14using Microsoft.VisualStudio.TestTools.UnitTesting;
33 _testDIContext = TestDIContextFactory.CreateDefaultContext();
40 Assert.IsNotNull(lazy,
"new LazySingelton can not be null.");
47 Assert.IsNotNull(lazy,
"new LazySingelton can not be null.");
54 Assert.IsFalse(lazy.IsValueCreated,
"IsValueCreated must be false by default.");
62 Assert.IsFalse(lazy.IsValueCreated,
"IsValueCreated must be false by default.");
69 var value = lazy.
Value;
70 Assert.IsNotNull(lazy.Value,
"Value must not be null.");
71 Assert.IsTrue(lazy.IsValueCreated);
72 Assert.AreEqual(typeof(Dictionary<string, object>), lazy.Value.GetType());
79 var value = lazy.
Value;
80 Assert.IsNotNull(lazy.Value,
"Value must not be null.");
81 Assert.IsTrue(lazy.IsValueCreated);
82 Assert.AreEqual(typeof(Dictionary<string, object>), lazy.Value.GetType());
85 #region Private Helper Methods
An alternative to Lazy<T>
T Value
Gets the instance.
This is a test class for LazySingeltonTest and is intended to contain all LazySingeltonTest Unit Test...
void LazySingeltonDefaultConstructorCreatesObject()
void LazySingeltonConstructorWithOverloadConstructorCreatesObject()
void ValueIsLazyWithOverloadConstructorCreatesValueTest()
void ValueIsLazyCreatesValueTest()
void IsValueCreatedWithOverloadConstructorIsFalseTest()
void IsValueCreatedWithDefaultConstructorIsFalseTest()
static void ClassInitialize(TestContext context)
Type to carry context information for DI in unit tests