* Re enabling Java tests in akka-docs (they were not run before) * Fixed bug #19764 * #19735 Rewrote every sample using the deprecated PushPullStage and friends using GraphStage * Pruned old unused graph images * Added missing graffle file for new graph images
13 lines
247 B
Scala
13 lines
247 B
Scala
/*
|
|
* Copyright (C) 2016 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
package docs
|
|
|
|
import org.scalatest.junit.JUnitSuite
|
|
|
|
/**
|
|
* Base class for all runnable example tests written in Java
|
|
*/
|
|
abstract class AbstractJavaTest extends JUnitSuite {
|
|
|
|
}
|