summaryrefslogtreecommitdiff
path: root/test/osgi/src/BasicTest.scala
blob: 109b7b911a0678531d459e496bd79fd79826c78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package tools.test.osgi
 
import org.junit.Assert._
import org.ops4j.pax.exam.CoreOptions._
 
import org.junit.Test
import org.junit.runner.RunWith
import org.ops4j.pax.exam
import org.ops4j.pax.exam.junit.{
  Configuration,
  ExamReactorStrategy,
  JUnit4TestRunner
}
import org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactorFactory
import org.ops4j.pax.swissbox.framework.ServiceLookup
import org.osgi.framework.BundleContext





@RunWith(classOf[JUnit4TestRunner])
@ExamReactorStrategy(Array(classOf[AllConfinedStagedReactorFactory]))
class BasicTest extends ScalaOsgiHelper {
  @Configuration
  def config(): Array[exam.Option] = {
    // TODO - Find scala bundles.
    standardOptions
  }
 
  @Test
  def everythingLoads(): Unit = ()
}