Package br.com.caelum.tubaina.parser.latex

Source Code of br.com.caelum.tubaina.parser.latex.XmlTagTest

package br.com.caelum.tubaina.parser.latex;

import org.junit.Test;

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

@Deprecated
public class XmlTagTest extends AbstractTagTest {

  @Test(expected=Exception.class)
  public void tagIsDeprecatedAndParsingAgainstItWillAlwaysThrowAnException() {
    XmlChunk chunk = new XmlChunk("", "<tag>And content</tag>");
    getContent(chunk);
  }
 
}
TOP

Related Classes of br.com.caelum.tubaina.parser.latex.XmlTagTest

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.