aboutsummaryrefslogtreecommitdiff
path: root/plugin/src/sbt-test/sbt-jni/simple/core/src/test/scala/simple/Test.scala
blob: 47a5f4008ee2aeb6a0d434f0cf42b6b3d9b374b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package simple

import org.scalatest._

class SimpleSpec extends FlatSpec {

  "Calling native methods in tests" should "work" in {
    assert(Library.say("hello") == 42)
  }

}