=pro #15178 enable junit tests in akka-streams again

The junit-interface is treating "anything it cannot understand" as a
globbing pattern, thus when it didn't understand ScalaTest options, it
used them for globbing, and of course none of our junit tests matched
the "-oDF" pattern for example.

Debugged this with Stefan and we've opened an issue to improve the
integration in this respect:
https://github.com/sbt/junit-interface/issues/60

Resolves #15178
This commit is contained in:
Konrad 'ktoso' Malawski 2014-10-08 13:39:55 +02:00
parent afd45a09f4
commit ec3cecb896
4 changed files with 8 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import akka.stream.*;
import akka.stream.testkit.AkkaSpec;
import akka.testkit.JavaTestKit;
import org.junit.ClassRule;
import org.junit.Ignore;
import org.junit.Test;
import org.reactivestreams.Publisher;
import scala.Option;
@ -22,6 +23,7 @@ import java.util.concurrent.TimeUnit;
import static org.junit.Assert.assertEquals;
@Ignore
public class FlowTest {
@ClassRule