// TODO: use a service track to wait for the registration of the service
ServiceReference topicEngineReference = context.getServiceReference(TopicClassificationEngine.class
.getName());
TestCase.assertNotNull(topicEngineReference);
TopicClassificationEngine engine = (TopicClassificationEngine) context
.getService(topicEngineReference);
TestCase.assertNotNull(engine);
// TODO: test classification here
}