Tagged Questions
The specs tag has no wiki summary.
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 ...
29
votes
8answers
16k views
Templates of Technical and Functional Specs
So basically I am looking for good templates for writing both technical and functional specs on a project or work request.
What do you guys use? How in depth do you get while writing the specs? Any ...
16
votes
2answers
297 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 ...
12
votes
1answer
3k views
Gecko/Firefox support for HTML5 Notifications
I'm wondering if there is any build-in support for the HTML5 Notification feature in Gecko browsers so far? Maybe some hidden developer thingy ?
I'm aware of WebKits window.webkitNotifications which ...
11
votes
8answers
528 views
As a consultant should I charge my clients for developing specs?
I'm trying to transition into some programming consulting work. A friend of my former employer is interested in having me "develop a spec," which I take to mean come up with some technology ...
8
votes
19answers
868 views
Is “RTFM” counter-productive?
I'm reading the very excellent The Design of Everyday Things by Donald Norman. In it, he describes a common problem:
The reason [that nobody reported a problem with the system] was simple: when ...
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
236 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
252 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
721 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
92 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
124 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
1answer
444 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
210 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
2answers
620 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
117 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
136 views
Specs for all android phones
Is there a central place where I can find the specs for the majority of the Android phones available on the market? I want to create avds for each of them.
3
votes
2answers
259 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 ...
3
votes
4answers
543 views
How to write a spec that is productive?
I've seen different program managers write specs in different format. Almost every one has had his/her own style of writing a spec.
On one hand are those wordy documents which given to a programmer ...
2
votes
1answer
33 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
476 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
172 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
5answers
165 views
What specs does one need for a good iPhone app development environment?
I'm going to buy a new mac to develop iPhone apps (previously been programming them at work on their iMac).
What do you think the minimum and recommended specs are?
Is 2 GB of RAM plenty for XCode, ...
2
votes
2answers
127 views
How to get card specs programatically in CUDA
I'm just starting out with CUDA. Is there a way of getting the card specs programatically?
2
votes
1answer
264 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
462 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
...
2
votes
4answers
903 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
3answers
656 views
How to specify image for the Settings app in iPhone app
How do I specify the image for the Setting in the iPhone for my iPhone app? What are the requirements for the images?
2
votes
1answer
354 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
291 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 ...
2
votes
1answer
182 views
Repository of “standard” BDD specs
Do you know of any resources or libraries of BDD specs?
For example, almost every web app has a login process. Some "standard" features might be handling of forgotten passwords, reset password, etc.
...
1
vote
1answer
62 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
74 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
123 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
1answer
76 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
229 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
1answer
144 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 ...
1
vote
3answers
146 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
194 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 ...
1
vote
1answer
146 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 ...
1
vote
5answers
179 views
HTML5: HTML VS XHTML spec question regarding comments
In the W3C working draft for HTML5 here's a line I find confusing:
http://www.w3.org/TR/html5/introduction.html#html-vs-xhtml
Comments that contain the string "-->"
can be represented in the ...
0
votes
2answers
90 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
71 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
187 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
2answers
494 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 ...
0
votes
1answer
270 views
How can you pass a block to have_selector?
I have the following view which I can't spec out properly in a view spec:
file: "products/index.html.haml"
#products
= render @products
And this is my view spec:
require 'spec_helper'
describe ...
0
votes
2answers
185 views
Flash banner advertising specs
Primarily at my work I do flash banners. Often I'll use MediaMind or DoubleClick, however there's obviously times when I need to develop the ads to meet the requirements of certain publishers like ...
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
32 views
Is there any book, article etc. on getting the best benefit from a 'spec' as a developer?
Imagine a specs for a feature that covers UI design and some business logic combined with a web-form that manipulates some data in a Db.
Can you recommend -if there is any- a book, article etc. that ...