/ant-task/src/test/java/com/google/ant/TestabilityTaskTest.java
http://testability-explorer.googlecode.com/ · Java · 36 lines · 27 code · 9 blank · 0 comment · 0 complexity · 73e5e2844c152c7c65dff3cc0bda1adb MD5 · raw file
- package com.google.ant;
- import junit.framework.TestCase;
- import org.apache.tools.ant.Project;
- public class TestabilityTaskTest extends TestCase
- {
- private TestabilityTask task;
- private Project project;
- public TestabilityTaskTest(String name)
- {
- super(name);
- }
- @Override
- protected void setUp()
- {
- task = new TestabilityTask();
- project = new Project();
- task.setProject(project);
- }
- @Override
- protected void tearDown()
- {
- }
- public void testNothing() throws Exception
- {
- assertTrue(true);
- }
- }