Package org.test

Source Code of org.test.FailureInBeforeClass

package org.test;

import static org.junit.Assert.*;

import org.junit.BeforeClass;
import org.junit.Test;
import org.test.depbase.Truth;

public class FailureInBeforeClass {
  private static Truth truth;

  @BeforeClass
  public static void beforeClass() {
    truth = new Truth();
    // FIXME Uncommenting this should cause the test to fail
    throw new IllegalStateException();
  }
 
  @Test
  public void passingTest() throws Exception {
    assertNotNull("beforeClass was never run", truth);
  }
}
TOP

Related Classes of org.test.FailureInBeforeClass

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.