/* * Copyright (C) 2009-2016 Lightbend Inc. */ package docs.http.javadsl.server; import akka.actor.ActorSystem; import com.typesafe.sslconfig.akka.AkkaSSLConfig; import org.junit.Test; import org.scalatest.junit.JUnitSuite; /* COMPILE ONLY TEST */ public class HttpsServerExampleTest extends JUnitSuite { @Test public void compileOnlySpec() throws Exception { // just making sure for it to be really compiled / run even if empty } void sslConfigGet() { //#akka-ssl-config final ActorSystem system = ActorSystem.create(); final AkkaSSLConfig sslConfig = AkkaSSLConfig.get(system); //# } }