Package org.apache.felix.ipojo.test.scenarios.manipulation

Source Code of org.apache.felix.ipojo.test.scenarios.manipulation.Boxing

package org.apache.felix.ipojo.test.scenarios.manipulation;

import java.util.Properties;

import org.apache.felix.ipojo.ComponentInstance;
import org.apache.felix.ipojo.junit4osgi.OSGiTestCase;
import org.apache.felix.ipojo.junit4osgi.helpers.IPOJOHelper;
import org.apache.felix.ipojo.test.scenarios.manipulation.service.PrimitiveManipulationTestService;
import org.osgi.framework.ServiceReference;

public class Boxing extends OSGiTestCase {
   
    ComponentInstance instance; // Instance under test

    PrimitiveManipulationTestService prim;

    ServiceReference prim_ref;
   
    IPOJOHelper helper;

    public void setUp() {
        helper = new IPOJOHelper(this);
        Properties p1 = new Properties();
        p1.put("instance.name","primitives");
        instance = helper.createComponentInstance("ManipulationPrimitives5-PrimitiveManipulationTester", p1);
        assertTrue("check instance state", instance.getState() == ComponentInstance.VALID);
        prim_ref = helper.getServiceReferenceByName(PrimitiveManipulationTestService.class.getName(), instance.getInstanceName());
        assertNotNull("Check prim availability", prim_ref);
        prim = (PrimitiveManipulationTestService) getServiceObject(prim_ref);
    }

    public void tearDown() {
        helper.dispose();
        prim = null;
    }
   
  public void testLongFromObject() {
      assertEquals("Check - 1", prim.getLong(), 1);
      Long l = new Long(2);
      prim.setLong(l);
      assertEquals("Check - 2", prim.getLong(), 2);
  }

  public void testLongFromObject2() {
      assertEquals("Check - 1", prim.getLong(), 1);
      Long l = new Long(2);
      prim.setLong(l, "ss");
      assertEquals("Check - 2", prim.getLong(), 2);
  }

}
TOP

Related Classes of org.apache.felix.ipojo.test.scenarios.manipulation.Boxing

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.