stuff moved to a new package. you wouldn't expect that in a point release, but they put type aliases in place so Scala users wouldn't notice. but the change is visible to Java code. the upgrade is not strictly necessary, but it would be convenient for the Scala 2.13 community build to have this merged, so I don't have to maintain these changes in our Akka fork
10 lines
264 B
Java
10 lines
264 B
Java
/*
|
|
* Copyright (C) 2016-2019 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package jdocs;
|
|
|
|
import org.scalatestplus.junit.JUnitSuite;
|
|
|
|
/** Base class for all runnable example tests written in Java */
|
|
public abstract class AbstractJavaTest extends JUnitSuite {}
|