public void GetTypeTest() { const string key = "Key"; IFluent target = new KeyModel(key); Type expected = typeof(KeyModel); Type actual = target.GetType(); Assert.AreEqual(expected, actual); }