summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/contribution-folder/src/test/java/ContributionZIPTestCaseFIXME.java
blob: aecaad336045d9aa052ee0277a25df8f68c17316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import junit.framework.TestCase;

import org.apache.tuscany.sca.host.embedded.SCADomain;

import calculator.CalculatorService;



/**
 * Test SCADomain.newInstance and invocation of a service.
 * 
 * @version $Rev: 608205 $ $Date: 2008-01-02 20:29:05 +0000 (Wed, 02 Jan 2008) $
 */
public class ContributionZIPTestCaseFIXME extends TestCase {

    private SCADomain domain;
    
    @Override
    protected void setUp() throws Exception {
        domain = SCADomain.newInstance("myDomain", "src/test/resources/repository3/contribution.zip", null );
    }

    public void testInvoke() throws Exception {
        CalculatorService service = domain.getService(CalculatorService.class, "CalculatorServiceComponent");
        assertEquals(3.0, service.add(1, 2));
    }

    @Override
    protected void tearDown() throws Exception {
        domain.close();
    }

}