Documentation improvements
* 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
This commit is contained in:
parent
8f3c5aa17f
commit
737991c01c
103 changed files with 1136 additions and 4749 deletions
|
|
@ -9,6 +9,7 @@ import akka.actor.ActorSystem;
|
|||
import akka.actor.Props;
|
||||
import akka.io.Udp;
|
||||
import akka.testkit.JavaTestKit;
|
||||
import docs.AbstractJavaTest;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
|
|
@ -19,6 +20,9 @@ import java.net.NetworkInterface;
|
|||
import java.util.Enumeration;
|
||||
import java.util.Random;
|
||||
|
||||
// not part of the test suite because we have not figured out
|
||||
// a way to find an interface that is sure to work on all platforms
|
||||
// to listen for udp on
|
||||
public class JavaUdpMulticastTest {
|
||||
|
||||
static ActorSystem system;
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ package docs.io.japi;
|
|||
|
||||
|
||||
import akka.testkit.AkkaJUnitActorSystemResource;
|
||||
import docs.AbstractJavaTest;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.Test;
|
||||
|
||||
|
|
@ -29,7 +30,7 @@ import akka.util.ByteString;
|
|||
import akka.testkit.JavaTestKit;
|
||||
import akka.testkit.AkkaSpec;
|
||||
|
||||
public class IODocTest {
|
||||
public class IODocTest extends AbstractJavaTest {
|
||||
|
||||
static
|
||||
//#server
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue