Bike.Test.BaseInterpreterTest.InterpretFail C# (CSharp) Method

InterpretFail() protected method

protected InterpretFail ( string errorType ) : void
errorType string
return void
        protected void InterpretFail(string errorType, params string[] sources)
        {
            foreach (var source in sources)
            {
                ExpectFail(errorType, source, () => Interpret(source));
            }
        }