public StatementLoopOverGood Constructor(IValue indiciesToCheck, IValue indexIsGood, IDeclaredParameter index)
        {
            StatementLoopOverGood target = new StatementLoopOverGood(indiciesToCheck, indexIsGood, index);

            return(target);
        }
        public bool TestTryCombine([PexAssumeUnderTest] StatementLoopOverGood loop, IStatement s)
        {
            /// We should never be able to combine any filter statements currently!

            return(loop.TryCombineStatement(s, null));
        }
        public IEnumerable <string> CodeItUp([PexAssumeUnderTest] StatementLoopOverGood target)
        {
            IEnumerable <string> result = target.CodeItUp();

            return(result);
        }