Exemplo n.º 1
0
        public void Start_RegistersForEventsOfInterestMatchingKeys()
        {
            _chatter.TestStart();

            foreach (var dialogue in _data.DialogueEntries)
            {
                Assert.IsTrue(_events.ListenedEvents.Exists((entry) => entry.EventKey.Equals(dialogue.DialogueEntryKey) && entry.EventType == dialogue.ChatterType));
            }

            _chatter.TestDestroy();
        }