public void testUnhandledMethodNoAnnotation() {
Graph graph = TinkerGraphFactory.createTinkerGraph();
FramedGraph<Graph> framedGraph = new FramedGraphFactory().create(graph);
Person marko = framedGraph.getVertex(1, Person.class);
marko.unhandledNoAnnotation();
}
@Test(expected=UnhandledMethodException.class)
public void testUnhandledMethodWithAnnotation() {
Graph graph = TinkerGraphFactory.createTinkerGraph();