Ejemplo n.º 1
0
        public void AddsCorrectly()
        {
            var hear         = new Hear("test");
            var instructions = new SceneInstructions();

            instructions.Add(hear);
            var result = Assert.Single(instructions.Instructions);

            Assert.Equal(hear, result);
        }
 public ProducerTimerEvent(Hear hear)
 {
     this.Hear = hear;
 }
Ejemplo n.º 3
0
 public ConsumerTimerEvent(Hear hear)
 {
     this.Hear = hear;
 }