I have a file, data.xml in $SBT_PROJECT_HOME/src/test/resources/.

How can I read that file into a new FileReader in my test, data.scala in $SBT_PROJECT_HOME/src/test/scala/?

I've tried using "../resources/warAndPeace.txt", but that doesn't work. Are resources designed to be used some other way?

Thanks.

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

Resources are meant to be accessed using the special getResource style methods that Java provides. Given your example of data.xml being in $SBT_PROJECT_HOME/src/test/resources/, you can access it in a test like so:

import scala.io.Source

// The string argument given to getResource is a path relative to
// the resources directory.
val source = Source.fromURL(getClass.getResource("/data.xml"))

Of course that source is now just a normal Scala IO object so you can do anything you want with it, like reading the contents and using it for test data.

There are other methods to get the resource as well (for example as a stream). For more information look at the getResource methods on the Java Docs: Class.

link|improve this answer
feedback

For me, which I think is default, sbt will copy files from src/test/resources to target/<scala version>.final/test-classes.

Then I can access those resources in my tests using, for example:

val testData = Source.fromURL(getClass.getResource("/testData.txt"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.