Examples of TodoChunk


Examples of br.com.caelum.tubaina.chunk.TodoChunk

  @Override
  public Chunk createChunk(Matcher matcher) {
    String string = matcher.group(1);
    LOG.warn("TODO from chapter " + Chapter.getChaptersCount() + ": " + string);
    return new TodoChunk(string);
  }
View Full Code Here

Examples of 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());
  }
View Full Code Here

Examples of 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());
  }
View Full Code Here

Examples of 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());
  }
View Full Code Here

Examples of br.com.caelum.tubaina.chunk.TodoChunk

  @Override
  public Chunk createChunk(Matcher matcher) {
    String string = matcher.group(1);
    LOG.warn("TODO from chapter " + ChapterBuilder.getChaptersCount() + ": " + string);
    return new TodoChunk(string);
  }
View Full Code Here
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.