package thredds.servlet; import static org.junit.Assert.fail; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import thredds.mock.web.MockTdsContextLoader; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={"/WEB-INF/applicationContext-tdsConfig.xml"}, loader=MockTdsContextLoader.class) public class HtmlWriterTest { @Autowired HtmlWriter htmlWriter; @Ignore("Not yet implemented") @Test public void test() { fail("Not yet implemented"); } }