An active specification with JUnit consists of two parts: an
HTML file and a Java test that extends ConcordionTestCase
.
When you run the test class using JUnit, it will automatically locate the HTML file. It does this by looking in the same package for a ".html" file named the same as the test, but without the "Test" suffix.
If your test is called com.example.BreadcrumbTest then the corresponding HTML file must be in the same package (com.example) and called Breadcrumb.html.