コード例 #1
0
        public void ActionDependencyConstructorInitializeWithWaitingStateTest()
        {
            ActionType type = ActionType.LOCK_SPEECH; // TODO: Initialize to an appropriate value
            ActionDependency target = new ActionDependency(type);

            Assert.AreEqual(ActionState.WAITING, target.State);
        }
コード例 #2
0
        public void ActionDependencyConstructorDefineTypeTest()
        {
            ActionType type = ActionType.LOCK_SPEECH; // TODO: Initialize to an appropriate value
            ActionDependency target = new ActionDependency(type);

            Assert.AreEqual(type, target.Type);
        }