Tagged Questions

Scalatest is a framework for testing for Scala, which can test either Scala or Java code. It supports a number of different styles of testing, JUnit, TestNG, FunSuite (For test-driven development), Spec (for behaviour driven development) and FeatureSpec (for functional, integration, or acceptance ...

learn more… | top users | synonyms

17
votes
2answers
321 views

Scala testing: What's the status and relationship of SUnit, ScalaTest, ScalaCheck, Specs and ParTest?

Scala provides a choice of different testing frameworks, but I wonder if there are differences in the maturity and stability they have and which distinct features they provide. Is there a specific ...
8
votes
2answers
1k views

how to get a resource within scalatest w/ sbt

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 ...
7
votes
4answers
311 views

Unit testing several implementation of the same trait/interface

I program mostly in scala and java, using scalatest in scala and junit for unit testing. I would like to apply the very same tests to several implementations of the same interface/trait. The idea is ...
6
votes
2answers
160 views

How to show custom failure messages in ScalaTest?

Does anyone know how to show a custom failure message in ScalaTest? For example: NumberOfElements() should equal (5) Shows the following message when it fails: 10 did not equal 5 But i want ...
6
votes
1answer
432 views

ScalaTest in Java Eclipse project

I'm fairly new with ScalaTest, and now that I've got it running with Maven, of course I'd like to have it working well in Eclipse as well. My project is a Java project, but I want to improve my Scala ...
5
votes
3answers
452 views

Ways to improve this code

I am trying to write some test code for my java application using Scalatest. I figured, since Scala has so much more readable syntax it would result with more readable test code. So far, this is ...
5
votes
1answer
162 views

Scala: Defining test cases based on folder

I have to test a program which takes one input file. I have put all the input files inside a folder and now I want to use SBT and ScalaTest to have following features: TestAll : Invoke the program ...
4
votes
1answer
104 views

How to run scala BDD tests in Eclipse IDE

I'm trying to run this sample BDD test examples in my Eclipse IDE, but seems that in Run Configurations there are not suitable propositions for that? Also I couldn't find any suitable perspective for ...
4
votes
1answer
120 views

How can I get complete stacktraces for exceptions thrown in tests when using sbt and testng?

The stacktraces are truncated - e.g. they end with [info] ... Using last or changing traceLevel doesn't help - it simply prints the complete stacktrace of the sbt wrapper. This is testing with ...
4
votes
1answer
210 views

How to write an acceptance test using ScalaTest?

ScalaTest has very good documentation but they are short and do not give an example of acceptance test. How can I write acceptance test using ScalaTest for a web application?
4
votes
1answer
690 views

ScalaTest and Maven: getting started

I have a Maven/Java project I've been working on for years, and I wanted to take JavaPosse's advice and start writing my tests in Scala. I've written a few tests following ScalaTest's JUnit4 quick ...
4
votes
1answer
619 views

Scala and Mockito with traits

I had a simple class that naturally divided into two parts, so I refactored as class Refactored extends PartOne with PartTwo Then the unit tests started failing. Below is an attempt to recreate ...
4
votes
1answer
173 views

Setting up actions for multiple test folders in SBT

In relation to a previous question, I'd like to have multiple test folders for different types of test and be able to execute the tests contained in each folder with a separate SBT action. For ...
4
votes
1answer
393 views

clear instructions on using scalatest with the simple build tool

There's a lot of stuff from Scala 2.8.0-RC, but things seem to have changed a lot since then and I'm not finding much. I'd just like some clear instructions on how to get my SBT project (SBT version ...
4
votes
2answers
371 views

Is it possible to use the ScalaTest BDD syntax in a JUnit environment?

I would like to describe tests in BDD style e.g. with FlatSpec but keep JUnit as a test runner. The ScalaTest Quick Start does not seem to show any example of this: ...
4
votes
2answers
301 views

ScalaTest: Issues with Singleton Object re-initialization

I am testing a parser I have written in Scala using ScalaTest. The parser handles one file at a time and it has a singleton object like following: class Parser{...} object Resolver {...} The test ...
3
votes
1answer
105 views

BDD tool for Scala supporting reusable parameterized Gherkin clauses

Is there any BDD tool for Scala supporting reusable parameterized Gherkin clauses? I would like to be able to have the ability to use specs like these: Given number 4 is entered When "+" is pressed ...
3
votes
1answer
68 views

Scala conflicting inherited method names

I am trying to write some code to test a database model. Both the test framework and the database framework use the "===" operator, and the test framework's is being given preference. How can I ...
3
votes
1answer
97 views

Add scala test to scala eclipse project

I started with scala with eclipse and I have problems with adding ScalaTest to my project. I have already downloaded ScalaTest, but what next? I just starting with jvm and feel lost...
3
votes
1answer
133 views

Comparing collection contents with ScalaTest

I'm trying to unit-test some Scala that is very collection-heavy. These collections are returned as Iterable[T], so I am interested in the contents of the collection, even if the underlying types ...
3
votes
3answers
161 views

Scalatest - how to test println

Is there something in Scalatest that will allow me to test the output to the standard out via a println statement? So far I've mainly been using FunSuite with ShouldMatchers. e.g. how do we check ...
3
votes
2answers
484 views

How do I integrate ScalaTest with Spring

I need to populate my ScalaTest tests with @Autowired fields from a Spring context, but most Scalatest tests (eg FeatureSpecs can't be run by the SpringJUnit4ClassRunner.class - ...
3
votes
1answer
137 views

Setting up multiple test folders in a SBT project

We'd like to set up our SBT project so that we have multiple test folders as opposed to one. So we'd like to see: root src test scala ...
3
votes
3answers
1k views

How do I run a scala ScalaTest in IntelliJ idea?

I'm trying to run a scala flatspec test within Intellij IDEA (latest community build, with latest Scala plugin), but I keep getting "Empty test suite" errors. I tried using the normal "run" menu on ...
3
votes
5answers
973 views

How to populate java.util.HashMap on the fly from Scala code?

I am unit testing java code from ScalaTest and would like to populate a java.util.HashMap within the same statement it gets declared. Is it possible to do this in Scala?
3
votes
2answers
312 views

ScalaTest: check for contents of a sequence with ShouldMatcher

In my unit test, I want to express that a computed (result) sequence yielded a predefined sequence of result values. But without assuming anything about the actual implementation type of the sequence ...
3
votes
1answer
329 views

Can ScalaCheck/Specs warnings safely be ignored when using SBT with ScalaTest?

I have a simple FunSuite-based ScalaTest: package pdbartlett.hello_sbt import org.scalatest.FunSuite ...
2
votes
2answers
107 views

How to do an instanceof check with Scala(Test)

I'm trying to incorporate ScalaTest into my Java project, replacing all JUnit tests by ScalaTests. At one point, I want to check if Guice's Injector injects the correct type. In Java, I have a test ...
2
votes
1answer
78 views

BDD in Scalatest: Spec versus WordSpec versus FlatSpec, which should I use?

In Scalatest, I'm a bit unclear as to the advantages and disadvantages of using Spec versus WordSpec. I think the javadoc provide some degree of comparison of WordSpec versus FlatSpec, but I have no ...
2
votes
2answers
109 views

Avoiding Scala XML's <a>b {“c”}</a> != <a>b c</a> behaviour in tests

I'm using scalatest and want to say actualXML should be === expectedXML especially as === doesn't care about attribute order. However the assertion fails when text has been embedded using Scala ...
2
votes
2answers
224 views

ScalaTest console output in IntelliJ Idea

I'm pretty frustrated with how to make IDEA output anything from the tests to console. I've tried different versions of Scala, ScalaTest and IDEA - nothing helps. Currently my setup is: ...
2
votes
1answer
196 views

No Log4J output in sbt when using scalatest

I'm using Log4J for logging in SBT. In a configuration file, I've defined the TRACE level for the root node. When I run the project (sbt run) all debug output is displayed correctly. But when I run ...
2
votes
1answer
70 views

Does Scalatest have any support for assumptions?

As per the title, I'm wondering if it's possible to provide "assumptions" to Scalatest when defining a particular test case. Assumptions in this context would be preconditions for a test, such that ...
2
votes
1answer
40 views

Using a HavePropertyMatcher for collection elements in ScalaTest?

I've been using ScalaTest's FeatureSpec for a couple of days now and I'm trying to understand if it's possible to define the following spec using the built-in matchers (and if not, how I can write a ...
2
votes
1answer
205 views

Using the “should NOT produce [exception]” syntax in ScalaTest

I'am toying with Specs2 and ScalaTest for BDD in Scala. I've written expectations in Specs2 when I am asserting that a given exception should not be thrown. "do something" in { { .... } must ...
2
votes
1answer
152 views

@Test method in Scala trait not found

does somebody know why @Test annotated methods which are inherited from a Scala trait are not found by the JUnit 4 test runner? It gives me "No JUnit tests found". class FooTests extends BarTesting ...
2
votes
3answers
194 views

Overriding a trait and selftype

I want to override the ScalaTest trait BeforeAndAfterEach to have that stuff implemented once for all my tests. Finally I got it to compile, but I don't understand why. trait MySetup extends ...
2
votes
1answer
278 views

Using Specs with unitils

I am trying to get scala specs and unitils-dbunit to work. To use unitils you have to annotate your test class with @RunWith(classOf[UnitilsJUnit4TestClassRunner]) or extend from a class and you can ...
2
votes
4answers
953 views

learn Scala with TDD

I'm learning Scala now. I saw there are 2 test frameworks there, ScalaTest and Specs. My only problem is that I'm not still at ease with the language to decide which is better. Also I'm used to write ...
1
vote
1answer
46 views

how to set system properties by using -D when running Scalatest in a Maven project

I am new to Scala and Maven, we are starting to use Scalatest to do pre deployment tests for a Java project. We are using maven-scala-plugin to run the tests, and we want to read some parameters ...
1
vote
1answer
92 views

Scalatest FunSuite and Akka Actors

I want to write a ScalaTest test suite that uses Akka actors and runs from sbt. When I try to do this: class Tests extends FunSuite with BeforeAndAfterAll { override protected def beforeAll() { ...
1
vote
2answers
109 views

Mockito when/thenReturn always returning null in Scala Test when trying to mock rabbitmq ConnectionFactory

I'm trying to mock the RabbitMQ ConnectionFactory object to return a mocked connection, using scalatest and mockito. Below is an example test that I am using: class RabbitMQMockTest extends FunSuite ...
1
vote
0answers
74 views

GroovyTemplate of test runner throws exceptions and won't show error detail

Sometimes when a scalatest fails, Play test framework does not report the cause of the failure, instead I see the following. Any ideas why? Reporter completed abruptly with an exception after ...
1
vote
1answer
112 views

Why does adding a “pending” break my Scala test?

The commented line below breaks my testing import org.scalatest.WordSpec class LSESuite extends WordSpec { "An LSE market" should { "round values" in { val lse = new LSE { } ...
1
vote
1answer
57 views

How can I mock or stub case classes and extractors in scala?

As an example, I have a simple extractor, Planex, that takes apart .plan file strings and puts them back together. I have a few unit tests on it that pretty thoroughly define its behavior. Here's the ...
1
vote
2answers
83 views

is there a scalaTest mechanism similar to TestNg dependsOnMethods annotation

Can I have dependencies between scalaTest specs such that if a test fails, all tests dependent on it are skipped?
1
vote
2answers
563 views

Scalatest or specs2 with multiple test cases

In TestNg and Java, we can run multiple test cases using DataProvider, and this runs as separate tests, meaning execution of a test isn't stopped on failure. Is there an analogue for ScalaTest or ...
1
vote
1answer
271 views

Detailed test reports in SBT using ScalaTest

how to let SBT generate more detailed outputs of tests? Now only thing I get is the name of method and stack trace - I would like to have some more control over it, to get rid of stack trace, and ...
1
vote
1answer
194 views

Best Way to Integrate Scala Test into Existing Netbeans Java Project?

I have a stand-alone application that I wrote before I became test-infected. Its a Netbeans gui project, so I depend upon Matisse, and I don't want to change that, at least not now. I would, ...
1
vote
2answers
218 views

Testing multiple data sets with ScalaTest

is there any convenient way execute tests on multiple data sets - like in JUnit's parametrized tests?

1 2