How to access test resources in Scala?

后端 未结 5 885
难免孤独
难免孤独 2020-12-04 07:58

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

How can I read that file into a new FileReader in my test data.scala

5条回答
  •  独厮守ぢ
    2020-12-04 08:39

    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.

提交回复
热议问题