Package br.com.caelum.tubaina.parser.html.kindle

Source Code of br.com.caelum.tubaina.parser.html.kindle.TodoTagTest

package br.com.caelum.tubaina.parser.html.kindle;

import org.junit.Assert;
import org.junit.Test;

import br.com.caelum.tubaina.chunk.TodoChunk;

public class TodoTagTest extends AbstractTagTest {

  @Test
  public void todoContentIsEmpty() throws Exception {
    TodoChunk chunk = new TodoChunk("Something I have to do later");
    String content = getContent(chunk);
    Assert.assertTrue(content.isEmpty());
  }
}
TOP

Related Classes of br.com.caelum.tubaina.parser.html.kindle.TodoTagTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.