Fix CCE in UnaryExpression.equals

This commit is contained in:
Ville Skyttä 2016-07-28 21:29:57 +03:00
parent 2ec6a6d45d
commit d09209936a
2 changed files with 34 additions and 1 deletions

View File

@ -262,7 +262,7 @@ public abstract class UnaryExpression implements Expression {
return false;
}
final BinaryExpression that = (BinaryExpression) o;
final UnaryExpression that = (UnaryExpression) o;
if (!this.getExpressionSymbol().equals(that.getExpressionSymbol())) {
return false;

View File

@ -0,0 +1,33 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.artemis.selector.filter;
import org.apache.activemq.artemis.selector.impl.SelectorParser;
import org.junit.Assert;
import org.junit.Test;
public class UnaryExpressionTest {
@Test
public void testEquals() throws Exception {
BooleanExpression expr1 = UnaryExpression.createNOT(SelectorParser.parse("x = 1"));
BooleanExpression expr2 = UnaryExpression.createNOT(SelectorParser.parse("x = 1"));
Assert.assertTrue("Created unary expression 1", expr1 instanceof UnaryExpression);
Assert.assertTrue("Created unary expression 2", expr2 instanceof UnaryExpression);
Assert.assertEquals("Unary expressions are equal", expr1, expr2);
}
}