@@ -31,12 +31,18 @@ void assertjAssertMethod() throws Exception {
3131
3232 store .beginTransaction ();
3333
34- assertThat (conceptResult .getRows ().size ()).isEqualTo (1 );
34+ assertThat (conceptResult .getRows ().size ()).isEqualTo (2 );
3535 assertThat (conceptResult .getRows ()
3636 .get (0 )
3737 .getColumns ()
3838 .get ("assertMethod" )
3939 .getValue ()).asInstanceOf (type (MethodDescriptor .class ))
40+ .is (methodDescriptor (Assertions .class , "fail" , String .class ));
41+ assertThat (conceptResult .getRows ()
42+ .get (1 )
43+ .getColumns ()
44+ .get ("assertMethod" )
45+ .getValue ()).asInstanceOf (type (MethodDescriptor .class ))
4046 .is (methodDescriptor (Assertions .class , "assertThat" , boolean .class ));
4147
4248 verifyResultGraph ();
@@ -74,8 +80,12 @@ private void verifyResultGraph() throws NoSuchMethodException {
7480 + "RETURN testMethod, assertMethod" );
7581 assertThat (methodQueryResult .<MethodDescriptor >getColumn ("testMethod" ))
7682 .haveExactly (1 , methodDescriptor (AssertExample .class , "assertjAssertExampleMethod" ));
83+ assertThat (methodQueryResult .<MethodDescriptor >getColumn ("testMethod" ))
84+ .haveExactly (1 , methodDescriptor (AssertExample .class , "assertjFailExampleMethod" ));
7785 assertThat (methodQueryResult .<MethodDescriptor >getColumn ("assertMethod" ))
7886 .haveExactly (1 , methodDescriptor (Assertions .class , "assertThat" , boolean .class ));
87+ assertThat (methodQueryResult .<MethodDescriptor >getColumn ("assertMethod" ))
88+ .haveExactly (1 , methodDescriptor (Assertions .class , "fail" , String .class ));
7989 }
8090
8191}
0 commit comments