Package br.com.caelum.tubaina.chunk

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


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

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

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

  @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

Related Classes of br.com.caelum.tubaina.chunk.TodoChunk

Copyright © 2018 www.massapicom. 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.