示例#1
0
        public void HasVConfMethodTest_VconfEtc_ReturnsTrue()
        {
            // Given
            Init();
            string methodName = "Vconf.NotifyKeyChanged(IntKey, Outkey, out GetValue)";

            // When
            bool result = vconfMethod.HasVconfMethod(subMethodList, methodName);

            // Then
            Assert.IsTrue(result);
        }
示例#2
0
        public void HasVConfMethodTest_VconfSet_ReturnsTrue()
        {
            // Given
            Init();
            string methodName = "Vconf.SetString(\"db/cloud_voice_assistant/location/latitude\", latitude);";

            // When
            bool result = vconfMethod.HasVconfMethod(subMethodList, methodName);

            // Then
            Assert.IsTrue(result);
        }