All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iodesystems.junit4.runner.SampleTest.kt Maven / Gradle / Ivy

package com.iodesystems.junit4.runner

import org.junit.Test


class SampleTest {
  @Test
  fun test() {

  }

  @Test
  fun testWithOutput() {
    println("Output!")
    System.err.println("Oh no! stderr!")
  }

  @Test
  fun testWithFailure() {
    error("Oh no!")
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy