blob: 9c2d54cdcea1ec45e28eab6a8047f6eba2366647 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.felix.dm.runtime.itest.tests;
import org.apache.felix.dm.itest.util.Ensure;
import org.apache.felix.dm.itest.util.TestBase;
import org.apache.felix.dm.runtime.itest.components.CompositeAnnotations.C1;
import org.apache.felix.dm.runtime.itest.components.CompositeAnnotations.Dependency1;
import org.apache.felix.dm.runtime.itest.components.CompositeAnnotations.Dependency2;
import org.osgi.framework.ServiceRegistration;
/**
* Use case: Verify Composite annotated services.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
public class CompositeAnnotationsTest extends TestBase {
public void testComposite() {
Ensure e = new Ensure();
ServiceRegistration sr1 = register(e, C1.ENSURE);
ServiceRegistration sr2 = register(e, Dependency1.ENSURE);
ServiceRegistration sr3 = register(e, Dependency2.ENSURE);
e.waitForStep(4, 10000);
sr3.unregister();
sr2.unregister();
sr1.unregister();
e.waitForStep(12, 10000);
}
}