rt/aot-nb-test/src/main/java/org/apidesign/bck2brwsr/aot/junit/RunTest.java
changeset 1904 ceb231ab85f6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/aot-nb-test/src/main/java/org/apidesign/bck2brwsr/aot/junit/RunTest.java	Sun Mar 20 19:44:18 2016 +0100
     1.3 @@ -0,0 +1,71 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +package org.apidesign.bck2brwsr.aot.junit;
    1.22 +
    1.23 +import java.io.PrintStream;
    1.24 +import java.io.UnsupportedEncodingException;
    1.25 +import junit.framework.AssertionFailedError;
    1.26 +import junit.framework.JUnit4TestAdapter;
    1.27 +import junit.framework.Test;
    1.28 +import junit.framework.TestListener;
    1.29 +import junit.framework.TestResult;
    1.30 +import junit.textui.ResultPrinter;
    1.31 +
    1.32 +public class RunTest extends ResultPrinter {
    1.33 +    public static void main(String... args) throws UnsupportedEncodingException {
    1.34 +        System.err.println(run());
    1.35 +    }
    1.36 +
    1.37 +    public static String run() throws UnsupportedEncodingException {
    1.38 +        TestResult tr = new TestResult();
    1.39 +        class L implements TestListener {
    1.40 +            StringBuilder sb = new StringBuilder();
    1.41 +
    1.42 +            @Override
    1.43 +            public void addError(Test test, Throwable e) {
    1.44 +                sb.append(test.toString()).append("\n");
    1.45 +            }
    1.46 +
    1.47 +            @Override
    1.48 +            public void addFailure(Test test, AssertionFailedError e) {
    1.49 +                sb.append(test.toString()).append("\n");;
    1.50 +            }
    1.51 +
    1.52 +            @Override
    1.53 +            public void endTest(Test test) {
    1.54 +                sb.append(test.toString()).append("\n");;
    1.55 +            }
    1.56 +
    1.57 +            @Override
    1.58 +            public void startTest(Test test) {
    1.59 +                sb.append(test.toString()).append("\n");;
    1.60 +            }
    1.61 +        }
    1.62 +        L listener = new L();
    1.63 +        tr.addListener(listener);
    1.64 +        listener.sb.append("Starting the test run\n");
    1.65 +        JUnit4TestAdapter suite = new JUnit4TestAdapter(TestedTest.class);
    1.66 +        suite.run(tr);
    1.67 +        listener.sb.append("End of test run\n");
    1.68 +        return listener.sb.toString();
    1.69 +    }
    1.70 +
    1.71 +    RunTest(PrintStream writer) {
    1.72 +        super(writer);
    1.73 +    }
    1.74 +}