P3/junit-cs211.jar META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 1.8.0_25 (Oracle Corporation) junit/textui/ResultPrinter.class package junit.textui; public synchronized class ResultPrinter...

Java project due next Monday by midnight. I have around 60$.


P3/junit-cs211.jar META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: 1.8.0_25 (Oracle Corporation) junit/textui/ResultPrinter.class package junit.textui; public synchronized class ResultPrinter implements junit.framework.TestListener { java.io.PrintStream fWriter; int fColumn; public void ResultPrinter(java.io.PrintStream); synchronized void print(junit.framework.TestResult, long); void printWaitPrompt(); protected void printHeader(long); protected void printErrors(junit.framework.TestResult); protected void printFailures(junit.framework.TestResult); protected void printDefects(java.util.Enumeration, int, String); public void printDefect(junit.framework.TestFailure, int); protected void printDefectHeader(junit.framework.TestFailure, int); protected void printDefectTrace(junit.framework.TestFailure); protected void printFooter(junit.framework.TestResult); protected String elapsedTimeAsString(long); public java.io.PrintStream getWriter(); public void addError(junit.framework.Test, Throwable); public void addFailure(junit.framework.Test, junit.framework.AssertionFailedError); public void endTest(junit.framework.Test); public void startTest(junit.framework.Test); } junit/textui/TestRunner.class package junit.textui; public synchronized class TestRunner extends junit.runner.BaseTestRunner { private ResultPrinter fPrinter; public static final int SUCCESS_EXIT = 0; public static final int FAILURE_EXIT = 1; public static final int EXCEPTION_EXIT = 2; public void TestRunner(); public void TestRunner(java.io.PrintStream); public void TestRunner(ResultPrinter); public static void run(Class); public static junit.framework.TestResult run(junit.framework.Test); public static void runAndWait(junit.framework.Test); public void testFailed(int, junit.framework.Test, Throwable); public void testStarted(String); public void testEnded(String); protected junit.framework.TestResult createTestResult(); public junit.framework.TestResult doRun(junit.framework.Test); public junit.framework.TestResult doRun(junit.framework.Test, boolean); protected void pause(boolean); public static void main(String[]); public junit.framework.TestResult start(String[]) throws Exception; protected junit.framework.TestResult runSingleMethod(String, String, boolean) throws Exception; protected void runFailed(String); public void setPrinter(ResultPrinter); } junit/runner/BaseTestRunner.class package junit.runner; public abstract synchronized class BaseTestRunner implements junit.framework.TestListener { public static final String SUITE_METHODNAME = suite; private static java.util.Properties fPreferences; static int fgMaxMessageLength; static boolean fgFilterStack; boolean fLoading; public void BaseTestRunner(); public synchronized void startTest(junit.framework.Test); protected static void setPreferences(java.util.Properties); protected static java.util.Properties getPreferences(); public static void savePreferences() throws java.io.IOException; public static void setPreference(String, String); public synchronized void endTest(junit.framework.Test); public synchronized void addError(junit.framework.Test, Throwable); public synchronized void addFailure(junit.framework.Test, junit.framework.AssertionFailedError); public abstract void testStarted(String); public abstract void testEnded(String); public abstract void testFailed(int, junit.framework.Test, Throwable); public junit.framework.Test getTest(String); public String elapsedTimeAsString(long); protected String processArguments(String[]); public void setLoading(boolean); public String extractClassName(String); public static String truncate(String); protected abstract void runFailed(String); protected Class loadSuiteClass(String) throws ClassNotFoundException; protected void clearStatus(); protected boolean useReloadingTestSuiteLoader(); private static java.io.File getPreferencesFile(); private static void readPreferences(); public static String getPreference(String); public static int getPreference(String, int); public static String getFilteredTrace(Throwable); public static String getFilteredTrace(String); protected static boolean showStackRaw(); static boolean filterLine(String); static void (); } junit/runner/smalllogo.gif junit/runner/TestRunListener.class package junit.runner; public abstract interface TestRunListener { public static final int STATUS_ERROR = 1; public static final int STATUS_FAILURE = 2; public abstract void testRunStarted(String, int); public abstract void testRunEnded(long); public abstract void testRunStopped(long); public abstract void testStarted(String); public abstract void testEnded(String); public abstract void testFailed(int, String, String); } junit/runner/logo.gif junit/runner/Version.class package junit.runner; public synchronized class Version { private void Version(); public static String id(); public static void main(String[]); } junit/extensions/RepeatedTest.class package junit.extensions; public synchronized class RepeatedTest extends TestDecorator { private int fTimesRepeat; public void RepeatedTest(junit.framework.Test, int); public int countTestCases(); public void run(junit.framework.TestResult); public String toString(); } junit/extensions/ActiveTestSuite.class package junit.extensions; public synchronized class ActiveTestSuite extends junit.framework.TestSuite { private volatile int fActiveTestDeathCount; public void ActiveTestSuite(); public void ActiveTestSuite(Class); public void ActiveTestSuite(String); public void ActiveTestSuite(Class, String); public void run(junit.framework.TestResult); public void runTest(junit.framework.Test, junit.framework.TestResult); synchronized void waitUntilFinished(); public synchronized void runFinished(); } junit/extensions/TestDecorator.class package junit.extensions; public synchronized class TestDecorator extends junit.framework.Assert implements junit.framework.Test { protected junit.framework.Test fTest; public void TestDecorator(junit.framework.Test); public void basicRun(junit.framework.TestResult); public int countTestCases(); public void run(junit.framework.TestResult); public String toString(); public junit.framework.Test getTest(); } junit/extensions/TestSetup.class package junit.extensions; public synchronized class TestSetup extends TestDecorator { public void TestSetup(junit.framework.Test); public void run(junit.framework.TestResult); protected void setUp() throws Exception; protected void tearDown() throws Exception; } junit/extensions/ActiveTestSuite$1.class package junit.extensions; synchronized class ActiveTestSuite$1 extends Thread { void ActiveTestSuite$1(ActiveTestSuite, junit.framework.Test, junit.framework.TestResult); public void run(); } junit/extensions/TestSetup$1.class package junit.extensions; synchronized class TestSetup$1 implements junit.framework.Protectable { void TestSetup$1(TestSetup, junit.framework.TestResult) throws Exception; public void protect() throws Exception; } junit/framework/AssertionFailedError.class package junit.framework; public synchronized class AssertionFailedError extends AssertionError { private static final long serialVersionUID = 1; public void AssertionFailedError(); public void AssertionFailedError(String); private static String defaultString(String); } junit/framework/JUnit4TestAdapterCache$1.class package junit.framework; synchronized class JUnit4TestAdapterCache$1 extends org.junit.runner.notification.RunListener { void JUnit4TestAdapterCache$1(JUnit4TestAdapterCache, TestResult); public void testFailure(org.junit.runner.notification.Failure) throws Exception; public void testFinished(org.junit.runner.Description) throws Exception; public void testStarted(org.junit.runner.Description) throws Exception; } junit/framework/TestSuite.class package junit.framework; public synchronized class TestSuite implements Test { private String fName; private java.util.Vector fTests; public static Test createTest(Class, String); public static reflect.Constructor getTestConstructor(Class) throws NoSuchMethodException; public static Test warning(String); private static String exceptionToString(Throwable); public void TestSuite(); public void TestSuite(Class); private void addTestsFromTestCase(Class); public void TestSuite(Class, String); public void TestSuite(String); public transient void TestSuite(Class[]); private Test testCaseForClass(Class); public void TestSuite(Class[], String); public void addTest(Test); public void addTestSuite(Class); public int countTestCases(); public String getName(); public void run(TestResult); public void runTest(Test, TestResult); public void setName(String); public Test testAt(int); public int testCount(); public java.util.Enumeration tests(); public String toString(); private void addTestMethod(reflect.Method, java.util.List, Class); private boolean isPublicTestMethod(reflect.Method); private boolean isTestMethod(reflect.Method); } junit/framework/JUnit4TestCaseFacade.class package junit.framework; public synchronized class JUnit4TestCaseFacade implements Test, org.junit.runner.Describable { private final org.junit.runner.Description fDescription; void JUnit4TestCaseFacade(org.junit.runner.Description); public String toString(); public int countTestCases(); public void run(TestResult); public org.junit.runner.Description getDescription(); } junit/framework/TestCase.class package junit.framework; public abstract synchronized class TestCase extends Assert implements Test { private String fName; public void TestCase(); public void TestCase(String); public int countTestCases(); protected TestResult createResult(); public TestResult run(); public void run(TestResult); public void runBare() throws Throwable; protected void runTest() throws Throwable; public static void assertTrue(String, boolean); public static void assertTrue(boolean); public static void assertFalse(String, boolean); public static void assertFalse(boolean); public static void fail(String); public static void fail(); public static void assertEquals(String, Object, Object); public static void assertEquals(Object, Object); public static void assertEquals(String, String, String); public static void assertEquals(String, String); public static void assertEquals(String, double, double, double); public static void assertEquals(double, double, double); public static void assertEquals(String, float, float, float); public static void assertEquals(float, float, float); public static void assertEquals(String, long, long); public static void assertEquals(long, long); public static void assertEquals(String, boolean, boolean); public static void assertEquals(boolean, boolean); public static void assertEquals(String, byte, byte); public static void assertEquals(byte, byte); public static void assertEquals(String, char, char); public static void assertEquals(char, char); public static void assertEquals(String, short, short); public static void assertEquals(short, short); public static void assertEquals(String, int, int); public static void assertEquals(int, int);
Mar 09, 2021
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here