public void SystemTokenThrows()
 {
     RemoveWildcardVisitor visitor = new RemoveWildcardVisitor();
     SystemToken token = new SystemToken(ExpressionConstants.It, null);
     Action visitSystemToken = () => token.Accept(visitor);
     visitSystemToken.ShouldThrow<NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
 }
 public void SystemTokenThrows()
 {
     SelectExpandPathToStringVisitor visitor = new SelectExpandPathToStringVisitor();
     SystemToken systemToken = new SystemToken(ExpressionConstants.It, null);
     Action visitSystemToken = () => systemToken.Accept(visitor);
     visitSystemToken.ShouldThrow<NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
 }
 public void SystemTokenThrows()
 {
     RemoveWildcardVisitor visitor = new RemoveWildcardVisitor();
     SystemToken token = new SystemToken(ExpressionConstants.It, null);
     Action visitSystemToken = () => token.Accept(visitor);
     visitSystemToken.ShouldThrow<NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
 }
 public void SystemTokensThrowNotSupportedError()
 {
     AddNewEndingTokenVisitor visitor = new AddNewEndingTokenVisitor(new NonSystemToken("stuff", null, null));
     SystemToken token = new SystemToken(ExpressionConstants.It, null);
     Action visitSystemToken = () => token.Accept(visitor);
     visitSystemToken.ShouldThrow<NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
 }
        public void SystemTokenThrows()
        {
            SelectExpandPathToStringVisitor visitor = new SelectExpandPathToStringVisitor();
            SystemToken systemToken      = new SystemToken(ExpressionConstants.It, null);
            Action      visitSystemToken = () => systemToken.Accept(visitor);

            visitSystemToken.ShouldThrow <NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
        }
Exemple #6
0
        public void SystemTokensThrowNotSupportedError()
        {
            AddNewEndingTokenVisitor visitor = new AddNewEndingTokenVisitor(new NonSystemToken("stuff", null, null));
            SystemToken token            = new SystemToken(ExpressionConstants.It, null);
            Action      visitSystemToken = () => token.Accept(visitor);

            visitSystemToken.ShouldThrow <NotSupportedException>().WithMessage(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It));
        }
Exemple #7
0
        public void SystemTokenThrows()
        {
            RemoveWildcardVisitor visitor   = new RemoveWildcardVisitor();
            SystemToken           token     = new SystemToken(ExpressionConstants.It, null);
            Action visitSystemToken         = () => token.Accept(visitor);
            NotSupportedException exception = Assert.Throws <NotSupportedException>(visitSystemToken);

            Assert.Equal(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It), exception.Message);
        }
        public void SystemTokenThrows()
        {
            SelectExpandPathToStringVisitor visitor = new SelectExpandPathToStringVisitor();
            SystemToken           systemToken       = new SystemToken(ExpressionConstants.It, null);
            Action                visitSystemToken  = () => systemToken.Accept(visitor);
            NotSupportedException exception         = Assert.Throws <NotSupportedException>(visitSystemToken);

            Assert.Equal(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It), exception.Message);
        }
        public void SystemTokensThrowNotSupportedError()
        {
            AddNewEndingTokenVisitor visitor = new AddNewEndingTokenVisitor(new NonSystemToken("stuff", null, null));
            SystemToken token            = new SystemToken(ExpressionConstants.It, null);
            Action      visitSystemToken = () => token.Accept(visitor);

            NotSupportedException exception = Assert.Throws <NotSupportedException>(visitSystemToken);

            Assert.Equal(Strings.ALinq_IllegalSystemQueryOption(ExpressionConstants.It), exception.Message);
        }