=pro merge akka-http-tests-java8 with akka-http-tests (raw)

This commit is contained in:
Konrad Malawski 2016-01-13 01:00:15 +01:00
parent f6147972d7
commit e6448dfd05
7 changed files with 51 additions and 229 deletions

View file

@ -0,0 +1,16 @@
/*
* Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
*/
import akka.http.javadsl.server.HandlerBindingTest;
import docs.http.javadsl.server.HandlerExampleDocTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
HandlerBindingTest.class,
HandlerExampleDocTest.class
})
public class AllJavaTests {
}