* Expected result: Method must be called. Method must be called after all property
* and reference injection is complete.
*/
@Test
public void atInitProper() throws Exception {
SCANode2Factory nodeFactory = SCANode2Factory.newInstance();
SCANode2 node = nodeFactory.createSCANode(new File("src/main/resources/proper/AService.composite").toURL().toString(),
new SCAContribution("TestContribution",
new File("src/main/resources/proper").toURL().toString()));
node.start();
AService aService = ((SCAClient)node).getService(AService.class, "AComponent");
Assert.assertTrue(aService.isInitProper());