use of org.eclipse.mylyn.wikitext.parser.HeadingAttributes in project mylyn.docs by eclipse.
the class EventDocumentBuilderTest method beginHeading.
@Test
public void beginHeading() {
builder.beginHeading(3, new HeadingAttributes());
assertEvents(new BeginHeadingEvent(3, new HeadingAttributes()));
}
use of org.eclipse.mylyn.wikitext.parser.HeadingAttributes in project mylyn.docs by eclipse.
the class MultiplexingDocumentBuilderTest method beginHeading.
@Test
public void beginHeading() {
multiplexer.beginHeading(3, new HeadingAttributes());
assertEvents(new BeginHeadingEvent(3, new HeadingAttributes()));
}
Aggregations