public void ShouldGetInputs() { Reduce predicate; IInput <Token>[] inputs; predicate = new Reduce(); inputs = predicate.GetInputs().ToArray(); Assert.IsNotNull(inputs); Assert.AreEqual(1, inputs.Length); Assert.IsInstanceOfType(inputs[0], typeof(EOSInput <Token>)); }