Skip to Content
Testing in Scala
book

Testing in Scala

by Daniel Hinojosa
January 2013
Intermediate to advanced
166 pages
4h 7m
English
O'Reilly Media, Inc.
Content preview from Testing in Scala

Chapter 4. Specs2

Specs2 is a testing framework with a different focus and perspective that’s different from ScalaTest’s. Much like ScalaTest’s, Specs2 works with SBT, but it has some unique differences that a developer may choose based on the functionality needed. Specs2 has a different set of matchers, a different way of structuring tests, as well as DataTable specifications, AutoExamples, and Fitnesse style specifications used for collaboration purposes with the stakeholders of your project. Specs2 tests are also unique in that they are concurrently executed in each thread.

Setting Up Specs2 in SBT

Since the book is focused on testing frameworks used with SBT, the following setup in build.sbt will bring in some dependencies and resolvers that are required for Specs2 to run.

name := "Testing Scala" version := "1.0" scalaVersion := "2.9.2" resolvers ++= Seq( "snapshots" at "http://scala-tools.org/repo-snapshots", "releases" at "http://scala-tools.org/repo-releases") resolvers ++= Seq( "sonatype-snapshots" at "http://oss.sonatype.org/content /repositories/snapshots", "sonatype-releases" at "http://oss.sonatype.org/content /repositories/releases") libraryDependencies ++= Seq( "org.scalatest" % "scalatest_2.9.2" % "1.8" % "test" withSources() withJavadoc(), "joda-time" % "joda-time" % "1.6.2" withSources() withJavadoc(), "junit" % "junit" % "4.10" withSources() withJavadoc(), "org.testng" % "testng" % "6.1.1" % "test" withSources() withJavadoc(), "org.specs2" %% "specs2" % "1.12.3" withSources() ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Scala Test-Driven Development

Scala Test-Driven Development

Gaurav Sood
Scala in Action

Scala in Action

Nilanjan Raychaudhuri
Scala in Depth

Scala in Depth

Joshua Suereth

Publisher Resources

ISBN: 9781449360313Errata