예제 #1
0
        public void GetTypeTest()
        {
            const string key      = "Key";
            IFluent      target   = new KeyModel(key);
            Type         expected = typeof(KeyModel);
            Type         actual   = target.GetType();

            Assert.AreEqual(expected, actual);
        }