play.api.test

FakeApplication

case class FakeApplication(path: File = new java.io.File("."), classloader: ClassLoader = ..., additionalPlugins: Seq[String] = immutable.this.Nil, withoutPlugins: Seq[String] = immutable.this.Nil, additionalConfiguration: Map[String, _] = ..., withGlobal: Option[GlobalSettings] = scala.None) extends Application with WithDefaultConfiguration with WithDefaultGlobal with WithDefaultPlugins with Product with Serializable

Source
Fakes.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, WithDefaultPlugins, WithDefaultGlobal, WithDefaultConfiguration, Application, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FakeApplication
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. WithDefaultPlugins
  7. WithDefaultGlobal
  8. WithDefaultConfiguration
  9. Application
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FakeApplication(path: File = new java.io.File("."), classloader: ClassLoader = ..., additionalPlugins: Seq[String] = immutable.this.Nil, withoutPlugins: Seq[String] = immutable.this.Nil, additionalConfiguration: Map[String, _] = ..., withGlobal: Option[GlobalSettings] = scala.None)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val additionalConfiguration: Map[String, _]

  7. val additionalPlugins: Seq[String]

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val classloader: ClassLoader

    The application's classloader

    The application's classloader

    Definition Classes
    FakeApplicationApplication
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def configuration: Configuration

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def getExistingFile(relativePath: String): Option[File]

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path. This method returns an Option[File], using None if the file was not found.

    For example, to retrieve a configuration file:

    val myConf = application.getExistingFile("conf/myConf.yml")
    relativePath

    the relative path of the file to fetch

    returns

    an existing file

    Definition Classes
    Application
  16. def getFile(relativePath: String): File

    Retrieves a file relative to the application root path.

    Retrieves a file relative to the application root path.

    For example, to retrieve a configuration file:

    val myConf = application.getFile("conf/myConf.yml")
    relativePath

    relative path of the file to fetch

    returns

    a file instance; it is not guaranteed that the file exists

    Definition Classes
    Application
  17. lazy val global: GlobalSettings

    Definition Classes
    FakeApplicationWithDefaultGlobalApplication
  18. lazy val initialConfiguration: Configuration

    Attributes
    protected
    Definition Classes
    WithDefaultConfiguration
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. val mode: Mode.Value

    Dev, Prod or Test

    Dev, Prod or Test

    Definition Classes
    FakeApplicationApplication
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. val path: File

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    The absolute path hosting this application, mainly used by the getFile(path) helper method

    Definition Classes
    FakeApplicationApplication
  25. def plugin[T](implicit ct: ClassTag[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, to retrieve the DBPlugin instance:

    val dbPlugin = application.plugin[DBPlugin].map(_.api).getOrElse(sys.error("problem with the plugin"))
    T

    the plugin type

    returns

    The plugin instance used by this application.

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application.

  26. def plugin[T](pluginClass: Class[T]): Option[T]

    Retrieves a plugin of type T.

    Retrieves a plugin of type T.

    For example, retrieving the DBPlugin instance:

    val dbPlugin = application.plugin(classOf[DBPlugin])
    T

    the plugin type

    pluginClass

    the plugin’s class

    returns

    the plugin instance, wrapped in an option, used by this application

    Definition Classes
    Application
    Exceptions thrown
    Error

    if no plugins of type T are loaded by this application

  27. def pluginClasses: Seq[String]

    Definition Classes
    FakeApplicationWithDefaultPlugins
  28. lazy val plugins: Seq[Plugin]

    The plugins list used by this application.

    The plugins list used by this application.

    Plugin classes must extend play.api.Plugin and are automatically discovered by searching for all play.plugins files in the classpath.

    A play.plugins file contains a list of plugin classes to be loaded, and sorted by priority:

    100:play.api.i18n.MessagesPlugin
    200:play.api.db.DBPlugin
    250:play.api.cache.BasicCachePlugin
    300:play.db.ebean.EbeanPlugin
    400:play.db.jpa.JPAPlugin
    500:play.api.db.evolutions.EvolutionsPlugin
    1000:play.api.libs.akka.AkkaPlugin
    10000:play.api.GlobalPlugin
    Definition Classes
    WithDefaultPlugins
    See also

    play.api.Plugin

  29. def resource(name: String): Option[URL]

    Scans the application classloader to retrieve a resource.

    Scans the application classloader to retrieve a resource.

    For example, to retrieve a configuration file:

    val maybeConf = application.resource("conf/logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    the resource URL, if found

    Definition Classes
    Application
  30. def resourceAsStream(name: String): Option[InputStream]

    Scans the application classloader to retrieve a resource’s contents as a stream.

    Scans the application classloader to retrieve a resource’s contents as a stream.

    For example, to retrieve a configuration file:

    val maybeConf = application.resourceAsStream("conf/logger.xml")
    name

    the absolute name of the resource (from the classpath root)

    returns

    a stream, if found

    Definition Classes
    Application
  31. lazy val routes: Option[core.Router.Routes]

    The router used by this application (if defined).

    The router used by this application (if defined).

    Definition Classes
    Application
  32. val sources: None.type

    The SourceMapper used to retrieve source code displayed in error pages

    The SourceMapper used to retrieve source code displayed in error pages

    Definition Classes
    FakeApplicationApplication
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  37. val withGlobal: Option[GlobalSettings]

  38. val withoutPlugins: Seq[String]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from WithDefaultPlugins

Inherited from WithDefaultGlobal

Inherited from WithDefaultConfiguration

Inherited from Application

Inherited from AnyRef

Inherited from Any

Ungrouped