@Test
  public void testParseCorrectlyBoldContentInListItems() {
    UnorderedListNode unorderedListNode = (UnorderedListNode) parseBaseListNode("list-6.creole");

    Assert.assertEquals(1, unorderedListNode.getChildASTNodesCount());

    UnorderedListItemNode unorderedListItemNode =
        (UnorderedListItemNode) unorderedListNode.getChildASTNode(0);

    Assert.assertNotNull(unorderedListItemNode);

    FormattedTextNode formattedTextNode =
        (FormattedTextNode) unorderedListItemNode.getChildASTNode(1);

    BoldTextNode boldTextNode = (BoldTextNode) formattedTextNode.getChildASTNode(0);

    CollectionNode collectionNode = (CollectionNode) boldTextNode.getChildASTNode(0);

    UnformattedTextNode unformattedTextNode = (UnformattedTextNode) collectionNode.get(0);

    Assert.assertEquals("abcdefg", unformattedTextNode.getContent());
  }