Tagged Questions

31
votes
4answers
4k views

What’s the difference between ScalaTest and Scala Specs unit test frameworks?

Both are BDD (Behavior Driven Development) capable unit test frameworks for Scala written in Scala. And Specs is built upon may also involve the ScalaTest framework. But what does Specs offer ...
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 ...
6
votes
1answer
1k views

How does the “specs” BDD framework for Scala work?

I'm just getting started with Scala, and I'm wondering which language feature allows you to do this: "PersistentQueue" should { "add and remove one item" in { withTempFolder { val q = new ...
5
votes
1answer
244 views

Unit-testing Spring applications using Scala's Specs

We have a large infrastructure that's highly dependent on Spring Framework. Recently I began writing code in Scala and test it using Specs. This is all great but at some point I need to use ...
4
votes
1answer
269 views

Creating a Specs2 matcher in a modular way

I have functions A => Double. I want to check whether two such functions give the same results (up to a tolerance, using the existing beCloseTo matcher) for a given set of values. I want to be ...
4
votes
3answers
768 views

Mocking scala object

I am using mockito and trying to mock a scala object. object Sample { } //test class SomeTest extends Specification with ScalaTest with Mockito { "mocking should succeed" in { val ...
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
129 views

Configuring junitxml output for specs2 tests in sbt 0.10

How do I configure sbt 0.10 to use the junitxml option with specs2? The specs2 documentation says this is the way to do it using sbt 0.7.x: override def testOptions = super.testOptions ++ ...
3
votes
2answers
506 views

How to use Specs2 with Scalacheck to automate testing of String arguments?

The rewritten specs2 testing framework for Scala integrates automated testing with scalacheck. The examples given in the specs2 documentation on how to use scalacheck together with specs2 either use ...
3
votes
2answers
220 views

In Scala Specs, what is the “must” function?

I'm working with some Specs tests and I'm trying to understand what the "must" function is, and what it does. I am unable to find its declaration or implementation anywhere in the specs source, and ...
3
votes
6answers
120 views

Approaches to testing that a method is not available on a type

Given a type hierarchy for a game which strongly distinguishes whose turn is next: trait Game trait BlackToPlay extends Game { def move(p: BlackPiece, s: Square): Either[FinishedGame, WhiteToPlay] ...
3
votes
1answer
483 views

“scala is not an enclosing class”

When compiling this specification: import org.specs.Specification import org.specs.matcher.extension.ParserMatchers class ParserSpec extends Specification with ParserMatchers { type Elem = Char ...
3
votes
2answers
643 views

Selenium, specs and scala

I'm looking an info or some project for selenium testing with scala specs. How can I call selenium tests from my scala specs code?
3
votes
2answers
119 views

How to compose a Matcher[Iterable[A]] from a Matcher[A] with specs testing framework

If I have a Matcher[A] how do create a Matcher[Iterable[A]] that is satisfied only if each element of the Iterable satisfies the original Matcher. class ExampleSpec extends Specification { def ...
3
votes
2answers
263 views

Getting failure detail on failed scala/maven/specs tests

I am playing a bit with scala, using maven and scala plugin. I can't find a way to have mvn test report failure details - in particular, whenever some function returns wrong reply, I am getting ...
2
votes
2answers
72 views

Specs implicit conversion conflicts with Scala Predef

I have a type alias in my code like so: type Time = Double And I often in both tests and in applications pass Long values to functions that use this type. For instance: def at(time : Time) : T = ...
2
votes
3answers
545 views

Scala, Specs2, Mockito and null return values

I'm trying to test-drive some Scala code using Specs2 and Mockito. I'm relatively new to all three, and having difficulty with the mocked methods returning null. In the following (transcribed with ...
2
votes
1answer
203 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
277 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
1answer
152 views

How to get pretty output from specs+scalacheck with maven?

When I run Specs + Scalacheck tests with IDEA, I get nice pretty output: Specification "CoreSpec" The core grammar should + parse any encoded string + fail to parse an empty encoded ...
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 ...
2
votes
1answer
200 views

Using specs matchers in scalacheck properties

I'm trying to use specs mathers inside scalacheck properties. For example, I have a matcher that works like this: x must matchMyMatcher(y) When I want to use this matcher inside scalacheck ...
2
votes
1answer
358 views

How to eliminate stack trace when running Specs through SBT?

I have a Scala project that I'm using SBT and Specs on. When I run sbt test, it correctly runs my tests, but a failing test results in a huge stack trace. [info] == caravan.DependenciesSpec == ...
2
votes
1answer
296 views

scala specs don't exit when testing actors

I'm trying to test some actors using scala specs. I run the test in IDEA or Maven (as junit) and it does not exit. Looking at the code, my test finished, but some internal threads (scheduler) are ...
1
vote
1answer
77 views

How to instruct sbt 0.11.x which source files contain tests

I'm new to Scala, SBT and Specs. I have created a simple specification using specs and like to run it via SBT with the "test" task. When I execute that task, I get the following error: > test ...
1
vote
1answer
80 views

Specs2: How to turn a Seq[Matcher[A]] into a single Matcher[A]?

Given a sequence Seq[Matcher[A]] I want to obtain a single Matcher[A] that succeeds when all matchers inside the sequence succeed. Edit The answer provided by myself seems a bit clumsy and in ...
1
vote
1answer
134 views

Fragment Evaluation Error

Can someone tell me what "Fragment evaluation error" means, or where I might look for solutions? I sometimes (but not always) get lots of these errors (without changing my code): [error] ! Fragment ...
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
84 views

How to include external source files in a spec to specify measures?

I'm using Specs2 to write a specification for a measurement library. To verify the calculated measures I have numerous source files covering standard cases as well as a lot of corner cases. I did ...
1
vote
4answers
243 views

Exception matcher in Specs BDD library for Scala

Im using the Specs BDD library for writing Scala unit tests (http://code.google.com/p/specs) .In my code if i want to assert that a throws an exception of type ClassNotFoundException, then i can write ...
1
vote
3answers
154 views

Generating arbitrary (legal) Unicode character with scalacheck?

I'm trying to create a generator that produces (non-zero-length) legal unicode strings, with scalacheck 1.6.6 and specs 1.7 (scala 2.8.1). I hoped I could just create generators like: object ...
1
vote
1answer
148 views

Scala specs: nest in-statements

is it possible to nest following specs test code "ClassX" should { "throw an IllegalArgumentException if n < 0" in { ClassX(-1) must throwA[IllegalArgumentException] } "throw an ...
0
votes
2answers
112 views

Scala spec unit tests

I ve got the following class and I want to write some Spec test cases, but I am really new to it and I don't know how to start. My class do loke like this: class Board{ val array = ...
0
votes
1answer
79 views

Mockito different range expectations

I'm using Mockito as a part of Specs in scala code and I've stumbled upon the following task: Given an ArrayBuffer that emulates a chess board (8x8 = 64 cells). If we querying ArrayBuffer for cell ...
0
votes
1answer
206 views

Generate specification plan of specs2 using Maven?

I am having trouble outputting the specification plan of my specs2 specifications using Maven. I have, e.g., class FooTest extends SpecificationWithJUnit{ "foo" should { "bar" in { "bat" ...
0
votes
1answer
87 views

What is the intended use of SUS and sub-examples in Specs for Scala?

Specs provides two different means of hierarchically structuring your specifications. One is by defining a "system under specification" and the other is by making sub-examples (one example is one ...
0
votes
1answer
348 views

Iterating over a JSON array in scala

I'm using the JSON lib net.sf.json(http://json-lib.sourceforge.net/apidocs/net/sf/json/package-summary.html) in my scala code. Also, I'm using the specs BDD framework (http://code.google.com/p/specs/) ...
0
votes
1answer
131 views

Checking if a value is assigned to a boolean variable in specs

In specs bdd framework(http://code.google.com/p/specs), i can check if a value is assigned to a string or not using : SomeClass.strVal == null mustBe false Now, suppose the class has a boolean ...
0
votes
2answers
554 views

How to play with Specs matchers in Scala REPL?

While debugging or exploring spec features it would be more advantageous to type them in REPL (Scala interpreter) rather then in file with spec and run it with something like maven. What is the ...