rt/aot-nb-test/src/main/java/org/apidesign/bck2brwsr/aot/junit/RunTest.java
changeset 1897 cb637833bfb3
parent 1896 9984d9a62bc0
child 1898 cf6d5d357696
     1.1 --- a/rt/aot-nb-test/src/main/java/org/apidesign/bck2brwsr/aot/junit/RunTest.java	Sat Mar 19 13:15:11 2016 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,67 +0,0 @@
     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 -            }
    1.55 -
    1.56 -            @Override
    1.57 -            public void startTest(Test test) {
    1.58 -            }
    1.59 -        }
    1.60 -        L listener = new L();
    1.61 -        tr.addListener(listener);
    1.62 -        JUnit4TestAdapter suite = new JUnit4TestAdapter(TestedTest.class);
    1.63 -        suite.run(tr);
    1.64 -        return listener.sb.toString();
    1.65 -    }
    1.66 -
    1.67 -    RunTest(PrintStream writer) {
    1.68 -        super(writer);
    1.69 -    }
    1.70 -}