summaryrefslogtreecommitdiff
path: root/scalanativelib/test/resources/hello-native-world/test/src/utest/tests/MainTests.scala
blob: 39c3c5c6a1b34fa4e5f6a4922230099c7c924452 (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
package hellotest

import hello._
import utest._

object MainTests extends TestSuite {

  def tests: Tests = Tests {
    test("vmName"){
      test("containNative"){
        assert(
          Main.vmName.contains("Native")
        )
      }
      test("containScala"){
        assert(
          Main.vmName.contains("Scala")
        )
      }
    }
  }

}