示例#1
0
        public void TestConstructor()
        {
            StringKey stringKey = new StringKey("test");

            Assert.That(stringKey, Is.Not.Null);
            Assert.That(stringKey.GetKeyName(), Is.EqualTo("test"));
        }
示例#2
0
        public void TestGetKeyName()
        {
            StringKey stringKey1 = new StringKey("test");

            Assert.That(stringKey1.GetKeyName(), Is.EqualTo("test"));
        }