summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/container.python/src/test/java/org/apache/tuscany/container/python/PythonComponentBuilderTestCase.java
blob: 86e77920dc75c8470404c3a590d44164cf8ff9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.apache.tuscany.container.python;

import junit.framework.TestCase;

public class PythonComponentBuilderTestCase extends TestCase {

    public void testGetImplementationType() {
        PythonComponentBuilder builder = new PythonComponentBuilder();
        assertEquals(PythonImplementation.class, builder.getImplementationType());
    }

    public void testBuild() {
//        PythonComponentBuilder builder = new PythonComponentBuilder();
//        CompositeComponent parent = createMock(CompositeComponent.class);
//        Component component = builder.build(parent, componentDefinition, deploymentContext);
//        assertNotNull(component);
    }

    @Override
    protected void setUp() throws Exception {
        super.setUp();
    }
}