Esempio n. 1
0
        public void MockGeneric_with_int_should_be_lazy()
        {
            var target = new MockGeneric <int>(() => 123);

            Assert.AreEqual(0, target.GetValueCount);
            var first = target.GetValue();

            Assert.AreEqual(123, first);
            Assert.AreEqual(1, target.GetValueCount);
            var second = target.GetValue();

            Assert.AreEqual(first, second);
            Assert.AreEqual(1, target.GetValueCount);
        }
Esempio n. 2
0
        public void MockGeneric_with_string_should_be_lazy()
        {
            var target = new MockGeneric <string>(() => Guid.NewGuid().ToString("n"));

            Assert.AreEqual(0, target.GetValueCount);
            var first = target.GetValue();

            Assert.AreNotEqual(null, first);
            Assert.AreEqual(1, target.GetValueCount);
            var second = target.GetValue();

            Assert.AreEqual(first, second);
            Assert.AreEqual(1, target.GetValueCount);
        }
Esempio n. 3
0
        public void MockGeneric_with_null_string_should_be_lazy()
        {
            var target = new MockGeneric <string>(() => null);

            Assert.AreEqual(0, target.GetValueCount);

            var first = target.GetValue();

            Assert.AreEqual(1, target.GetValueCount);

            var second = target.GetValue();

            Assert.AreEqual(first, second);
            Assert.AreEqual(1, target.GetValueCount);
        }