osgi-test icon indicating copy to clipboard operation
osgi-test copied to clipboard

Testing support for OSGi. Includes JUnit 4 and JUnit 5 support and AssertJ support.

Results 76 osgi-test issues
Sort by recently updated
recently updated
newest added

This is an example where one can run osgi-test from inside [Eclipse PDE](https://www.eclipse.org/pde/) To execute it do the following: - make sure you are using a recent Eclipse for RCP/RAP...

stale

The current setup is rather complex and hard to understand for anyone not familiar with OSGi+BND tooling. This adds a JUnit5 Extension on top of the OSGi Framework connect that...

### Current state OSGi-Test provides a very convenient and powerful way to (unit) test OSGi code, but the current setup is rather complex and hard to understand for anyone not...

I have a simple component that is immediate. It acts as a whiteboard: ``` @Component(name = "DefaultActivationComponent", immediate = true) public class TaskComponent implements TaskService { ... } ``` I...

Is there a way to get code coverage and interactive debugging from osgi-test within intelli-j (I am using the gradle bnd plugin)? 1. I would like to be able to...

Utilities to Filter Service Bundle and FrameworkEvents. Usefull for further Asserations and in combination with EventRecording. If this fits to `osgi-test` i will add some docs, otherwise we can close...

AssertJ provides an way to Extend Asserations [see AssertJ](https://assertj.github.io/doc/#assertj-core-conditions) Conditions helpes to test Objects and Lists using is/has, isNot/hasNot, contains, doesNotContain ... They are kind of a described Predicate. This...

Assertions and Conditions on CofigurationEvent (`service.cm`)

Having reviewed the `InjectingExtension` in more detail, I believe that we've made some mistakes in the pattern that we should consider addressing: 1. It became apparent in my work on...

Currently it is very hard to getting started (or even recommending to others) osgi-test as you mostly has to puzzle things together: 1. https://osgi.github.io/osgi-test/ is just a dummy page with...