
org.scalatra.test.ImplicitConversions.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-test_2.11 Show documentation
Show all versions of scalatra-test_2.11 Show documentation
The abstract Scalatra test framework
The newest version!
package org.scalatra.test
/**
* Contains implicit conversions for making test DSL easier
* to use. This is included by all `Client` implementations.
*/
trait ImplicitConversions {
implicit def stringToByteArray(str: String): Array[Byte] = str.getBytes("UTF-8")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy