@Test
 public void dotAny() throws RegexParsingException {
   String regex = ".";
   RegexNode tree = parse(regex);
   assertEquals(DotAny.class, tree.getChildren().get(0).getClass());
 }