Subversion Repositories DevTools

Rev

Rev 6914 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6914 Rev 7033
Line 1... Line 1...
1
package com.erggroup.buildtool.utf;
1
package com.erggroup.buildtool.utf;
2
 
2
 
3
import com.erggroup.buildtool.ripple.ReleaseConfig;
3
import com.erggroup.buildtool.ripple.ReleaseConfig;
4
 
4
 
5
import org.apache.log4j.Logger;
5
import org.slf4j.Logger;
6
import org.apache.log4j.xml.DOMConfigurator;
6
import org.slf4j.LoggerFactory;
7
 
7
 
8
import org.junit.Test;
8
import org.junit.Test;
9
import org.junit.runner.JUnitCore;
9
import org.junit.runner.JUnitCore;
10
 
10
 
11
public class ReleaseConfigTest
11
public class ReleaseConfigTest
12
{
12
{
13
 
13
 
14
    private static final Logger mLogger = Logger.getLogger(ReleaseConfigTest.class);
14
    private static final Logger mLogger = LoggerFactory.getLogger(ReleaseConfigTest.class);
15
    ReleaseConfig               rc;
15
    ReleaseConfig               rc;
16
 
16
 
17
    /**
17
    /**
18
     * constructor
18
     * constructor
19
     */
19
     */
Line 25... Line 25...
25
    /**
25
    /**
26
     * Test Case main line
26
     * Test Case main line
27
     */
27
     */
28
    public static void main(String[] args)
28
    public static void main(String[] args)
29
    {
29
    {
30
        DOMConfigurator.configure("utf.xml");
-
 
31
        mLogger.debug("main");
30
        mLogger.debug("main");
32
        JUnitCore.main("com.erggroup.buildtool.utf.ESCROWBuildTestCase");
31
        JUnitCore.main("com.erggroup.buildtool.utf.ESCROWBuildTestCase");
33
    }
32
    }
34
 
33
 
35
    @Test
34
    @Test