Subversion Repositories DevTools

Rev

Rev 6914 | Rev 7082 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6914 Rev 7033
Line 17... Line 17...
17
import com.erggroup.buildtool.ripple.Package;
17
import com.erggroup.buildtool.ripple.Package;
18
import com.erggroup.buildtool.ripple.RippleEngine;
18
import com.erggroup.buildtool.ripple.RippleEngine;
19
import com.erggroup.buildtool.ripple.RunLevelData;
19
import com.erggroup.buildtool.ripple.RunLevelData;
20
import com.erggroup.buildtool.ripple.RunLevel.BuildState;
20
import com.erggroup.buildtool.ripple.RunLevel.BuildState;
21
 
21
 
22
import org.apache.log4j.Logger;
22
import org.slf4j.Logger;
23
import org.apache.log4j.xml.DOMConfigurator;
23
import org.slf4j.LoggerFactory;
24
import org.junit.AfterClass;
24
import org.junit.AfterClass;
25
import org.junit.BeforeClass;
25
import org.junit.BeforeClass;
26
import org.junit.After;
26
import org.junit.After;
27
import org.junit.Before;
27
import org.junit.Before;
28
import org.junit.Test;
28
import org.junit.Test;
Line 33... Line 33...
33
/**
33
/**
34
 * container of Build Daemon test methods
34
 * container of Build Daemon test methods
35
 */
35
 */
36
public class DaemonBuildTestCase
36
public class DaemonBuildTestCase
37
{
37
{
38
    private static final Logger mLogger = Logger.getLogger(DaemonBuildTestCase.class);
38
    private static final Logger mLogger = LoggerFactory.getLogger(DaemonBuildTestCase.class);
39
    ReleaseManager              releaseManager = null;
39
    ReleaseManager              releaseManager = null;
40
    RippleEngine                rippleEngine   = null;
40
    RippleEngine                rippleEngine   = null;
41
    
41
    
42
    /** Subclass and override key methods so that the test can control
42
    /** Subclass and override key methods so that the test can control
43
     *  the data being used
43
     *  the data being used
Line 1031... Line 1031...
1031
    /**
1031
    /**
1032
     * Test Case main line
1032
     * Test Case main line
1033
     */
1033
     */
1034
    public static void main(String[] args)
1034
    public static void main(String[] args)
1035
    {
1035
    {
1036
        DOMConfigurator.configure("utf.xml");
-
 
1037
        mLogger.debug("main");
1036
        mLogger.debug("main");
1038
        JUnitCore.main("com.erggroup.buildtool.utf.DaemonBuildTestCase");
1037
        JUnitCore.main("com.erggroup.buildtool.utf.DaemonBuildTestCase");
1039
    }
1038
    }
1040
 
1039
 
1041
    /**
1040
    /**