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