Sha256: 45098f7fd3e056a252c42b0224b5a5b9ba404882303ef6a10014a7a969c0cf5b
Contents?: true
Size: 476 Bytes
Versions: 6
Compression:
Stored size: 476 Bytes
Contents
package bar; import junit.framework.*; import java.lang.Exception; public class BarTest extends TestCase { public BarTest(String name) { super(name); } public void testBarbarEmpty() { Bar mr = new Bar(); assertEquals("", mr.bar()); } public void testBarbarAngle() { Bar mr = new Bar(); assertEquals("Bar>", mr.bar()); } public void testException() throws Exception { throw new Exception(); } }
Version data entries
6 entries across 6 versions & 1 rubygems