39 lines
610 B
Java
39 lines
610 B
Java
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 {
|
|
}
|
|
|
|
}
|