summaryrefslogtreecommitdiff
path: root/test-bridge/src/main/scala/scala/scalajs/testbridge/TestOutputLog.scala
blob: 3369592e89ed0b18327a7859295915b2e1f7abf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*                     __                                               *\
**     ________ ___   / /  ___      __ ____  Scala.js API               **
**    / __/ __// _ | / /  / _ | __ / // __/  (c) 2013, LAMP/EPFL        **
**  __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \    http://scala-js.org/       **
** /____/\___/_/ |_/____/_/ | |__/ /____/                               **
**                          |/____/                                     **
\*                                                                      */


package scala.scalajs.testbridge

trait TestOutputLog {
  def info(message: String): Unit
  def warn(message: String): Unit
  def error(message: String): Unit
}