CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
LazySingeltonTest.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using UnitDriven;
4using Csla.TestHelpers;
5
6#if NUNIT
7using NUnit.Framework;
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;
13#elif MSTEST
14using Microsoft.VisualStudio.TestTools.UnitTesting;
15#endif
17{
18
19
24 [TestClass]
25 public class LazySingeltonTest
26 {
27
28 private static TestDIContext _testDIContext;
29
31 public static void ClassInitialize(TestContext context)
32 {
33 _testDIContext = TestDIContextFactory.CreateDefaultContext();
34 }
35
36 [TestMethod]
38 {
40 Assert.IsNotNull(lazy, "new LazySingelton can not be null.");
41 }
42
43 [TestMethod]
45 {
46 var lazy = new LazySingleton<Dictionary<string, object>>(() => new Dictionary<string, object>());
47 Assert.IsNotNull(lazy, "new LazySingelton can not be null.");
48 }
49
50 [TestMethod]
52 {
54 Assert.IsFalse(lazy.IsValueCreated, "IsValueCreated must be false by default.");
55 }
56
57
58 [TestMethod]
60 {
61 var lazy = new LazySingleton<Dictionary<string, object>>(() => new Dictionary<string, object>());
62 Assert.IsFalse(lazy.IsValueCreated, "IsValueCreated must be false by default.");
63 }
64
65 [TestMethod]
67 {
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());
73 }
74
75 [TestMethod]
77 {
78 var lazy = new LazySingleton<Dictionary<string, object>>(() => new Dictionary<string, object>());
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());
83 }
84
85 #region Private Helper Methods
86
87 private LazySingleton<T> CreateLazySingleton<T>() where T:class
88 {
89 return new LazySingleton<T>();
90 }
91
92 #endregion
93 }
94}
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...
static void ClassInitialize(TestContext context)
Type to carry context information for DI in unit tests