Esempio n. 1
0
        public void ItParsesValuesProperly()
        {
            var expected = new DevicePowerChanged();
            var actual   = EventTypeParser.Parse("Device Power Changed");

            Assert.That(actual.GetType(), Is.EqualTo(expected.GetType()));
        }
Esempio n. 2
0
 public void ItThrowsExceptionsWhenParsingValidInput(string input)
 {
     EventTypeParser.Parse(input);
 }
Esempio n. 3
0
 public static IEventType ToEventType(this IParameter parameter)
 {
     return(EventTypeParser.Parse(parameter.Value));
 }