public void SimpleSignal() { var result = signaler.SignalItems(new[] { 1 }); Assert.True(result.ContainsKey(1)); Assert.Equal(0, result[1]); //There should be no signals. //The signal items should not throw an exception. }