summaryrefslogtreecommitdiff
path: root/scalanativelib/test/resources/hello-native-world/test/src/utest/tests/MainTests.scala
blob: 3a89f90ce06db59d04214c198f8171e03aa69960 (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 {
    'vmName - {
      'containNative - {
        assert(
          Main.vmName.contains("Native")
        )
      }
      'containScala - {
        assert(
          Main.vmName.contains("Scala")
        )
      }
    }
  }

}