Files
Brainstorm/Foundation Test/src/com/foundation/attribute/Test.java

39 lines
610 B
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
package com.foundation.attribute;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
/**
* Copyright Declarative Engineering LLC 2007<p>
*/
public class Test {
/**
* @throws java.lang.Exception
*/
public static void setUpBeforeClass() throws Exception {
}
/**
* @throws java.lang.Exception
*/
public static void tearDownAfterClass() throws Exception {
}
/**
* @throws java.lang.Exception
*/
public void setUp() throws Exception {
}
/**
* @throws java.lang.Exception
*/
public void tearDown() throws Exception {
}
}