Package org.junit.tests

Source Code of org.junit.tests.CommandLineTest$Example

package org.junit.tests;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

import junit.framework.JUnit4TestAdapter;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.JUnitCore;

public class CommandLineTest {
  private ByteArrayOutputStream results;
  private PrintStream oldOut;
  private static boolean testWasRun;

  @Before public void before() {
    oldOut= System.out;
    results= new ByteArrayOutputStream();
    System.setOut(new PrintStream(results));
  }

  @After public void after() {
    System.setOut(oldOut);
  }

  static public class Example {
    @Test public void test() {
      testWasRun= true;
    }
  }

  @Test public void runATest() {
    testWasRun= false;
    new JUnitCore().runMain(new String[]{"org.junit.tests.CommandLineTest$Example"});
    assertTrue(testWasRun);
  }
 
  @Test public void runAClass() {
    testWasRun= false;
    JUnitCore.runClasses(Example.class);
    assertTrue(testWasRun);   
  }

  private static int fCount;

  static public class Count {
    @Test public void increment() {
      fCount++;
    }
  }
 
  @Test public void runTwoClassesAsArray() {
    fCount= 0;
    JUnitCore.runClasses(new Class[] {Count.class, Count.class});
    assertEquals(2, fCount);   
  }

  @Test public void runTwoClasses() {
    fCount= 0;
    JUnitCore.runClasses(Count.class, Count.class);
    assertEquals(2, fCount);   
  }

  static public junit.framework.Test suite() {
    return new JUnit4TestAdapter(CommandLineTest.class);
  }

}
TOP

Related Classes of org.junit.tests.CommandLineTest$Example

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.