Skip to content

Commit

Permalink
Fixed missing @test annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudenw committed May 27, 2017
1 parent cd4fde0 commit f5818d4
Showing 1 changed file with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,9 @@ public void addTest() {
// public void castTest( Expr expr1, Expr expr2 )
// {
// assertTrue( e instanceof E_Cast);
// }@Test

// }

@Test
public void divideTest() {
Expr e = factory.divide(factory.none(), factory.none());
assertTrue(e instanceof E_Divide);
Expand Down Expand Up @@ -416,14 +417,18 @@ public void subtractTest() {
assertTrue(e instanceof E_Subtract);
}

// expr3 functions@Test
public void condTest(Expr condition, Expr thenExpr, Expr elseExpr) {
// expr3 functions

@Test
public void condTest() {
Expr e = factory.cond(factory.none(), factory.none(), factory.none());
assertTrue(e instanceof E_Conditional);
}

// exprN functions@Test
public void bnodeTest(Expr expr1) {
// exprN functions

@Test
public void bnodeTest_expr() {
Expr e = factory.bnode(factory.none());
assertTrue(e instanceof E_BNode);
}
Expand Down Expand Up @@ -527,8 +532,8 @@ public void substrTest() {
assertTrue(e instanceof E_StrSubstring);
}

// expr op@Test

// expr op
@Test
public void existsTest() {
WhereHandler handler = new WhereHandler(new Query());
Expand Down

0 comments on commit f5818d4

Please sign in to comment.