SlideShare a Scribd company logo
Spock
About me
Disclaimer
Agenda
●
●
●
●
●
Unit Testing
Main thoughts
●
●
●
●
●
●
Typical Java Unit test
Spock - The next stage of Unit testing
Spock
What is?
●
●
●
●
●
Why?
●
●
Why?
●
●
●
Given-When-Then example
def "A basket with one product has equal weight" () {
given: "an empty basket and a TV"
Product tv = new Product(name:"bravia",price:1200,weight:18)
Basket basket = new Basket()
when: "user wants to buy the TV"
basket.addProduct(tv)
then: "basket weight is equal to the TV"
basket.currentWeight == tv.weight
}
Why?
●
●
●
●
Informative message example
import spock.lang.*
class MyFirstSpec extends
Specification {
def "let's try this!" () {
expect:
Math.max(1, 2) == 3
}
}
Why?
●
●
●
●
●
Interaction testing example
def "credit card connection is always closed down" () {
given: "a basket, a customer and a TV"
Product tv = new Product(name:"bravia",price:1200,weight:18)
BillableBasket basket = new BillableBasket ()
Customer customer = new Customer(...)
and: "a credit card service"
CreditCardProcessor creditCardSevice = Mock(CreditCardProcessor )
basket.setCreditCardProcessor(creditCardSevice)
when: "user checks out the tv"
basket.addProduct tv
basket.checkout(customer)
then: "connection is always closed at the end"
1 * creditCardSevice .shutdown()
}
Why?
●
●
●
●
●
●
Data Driven example
class HelloSpock extends spock.lang.Specification {
def "length of Spock's and his friends' names"() {
expect:
name.size() == length
where:
name | length
"Spock" | 5
"Kirk" | 4
"Scotty" | 6
}
}
​
Demo
Spock - The next stage of Unit testing
Rules
Spock - The next stage of Unit testing
Questions &
Answers
Resources
Resource
●
●
●
●

More Related Content

PPTX
AIESEC internship programs - Kyiv
PDF
The Inbound Intern - (From Inbound 2013 Conference)
PDF
09.27.2010, PRESENTATION, AIESEC internship, Mr. Tomas Petrzela
PPTX
College edits- slide1
PPTX
Selection 2012
PPTX
Salford quays edits- slide
PDF
Результаты опроса YouthSpeak в России 2016
PDF
Spock pres
AIESEC internship programs - Kyiv
The Inbound Intern - (From Inbound 2013 Conference)
09.27.2010, PRESENTATION, AIESEC internship, Mr. Tomas Petrzela
College edits- slide1
Selection 2012
Salford quays edits- slide
Результаты опроса YouthSpeak в России 2016
Spock pres

Similar to Spock - The next stage of Unit testing (20)

PPTX
What Mr. Spock would possibly say about modern unit testing: pragmatic and em...
PDF
Spock Testing Framework
PDF
Java Testing With Spock - Ken Sipe (Trexin Consulting)
PDF
Spock Testing Framework - The Next Generation
PDF
Introduction to Spock: A Unit Testing Framework
PPTX
PDF
Unit test-using-spock in Grails
PPTX
Grails Spock Testing
PPTX
Unit/Integration Testing using Spock
PPTX
PPT
Unit testing with Spock Framework
PDF
PDF
Spock: Test Well and Prosper
PDF
Spock Framework - Slidecast
PDF
Spock Framework
PDF
TDD with Spock @xpdays_ua
PDF
Spock-Framework: The Logical Choice for Modern Testing
PPT
PDF
Spock framework
PDF
Pocket Talk; Spock framework
What Mr. Spock would possibly say about modern unit testing: pragmatic and em...
Spock Testing Framework
Java Testing With Spock - Ken Sipe (Trexin Consulting)
Spock Testing Framework - The Next Generation
Introduction to Spock: A Unit Testing Framework
Unit test-using-spock in Grails
Grails Spock Testing
Unit/Integration Testing using Spock
Unit testing with Spock Framework
Spock: Test Well and Prosper
Spock Framework - Slidecast
Spock Framework
TDD with Spock @xpdays_ua
Spock-Framework: The Logical Choice for Modern Testing
Spock framework
Pocket Talk; Spock framework
Ad

Recently uploaded (20)

PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
PPTX
Transform Your Business with a Software ERP System
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
Monitoring Stack: Grafana, Loki & Promtail
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Autodesk AutoCAD Crack Free Download 2025
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
history of c programming in notes for students .pptx
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
AutoCAD Professional Crack 2025 With License Key
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
17 Powerful Integrations Your Next-Gen MLM Software Needs
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PPTX
L1 - Introduction to python Backend.pptx
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Transform Your Business with a Software ERP System
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Monitoring Stack: Grafana, Loki & Promtail
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Autodesk AutoCAD Crack Free Download 2025
CHAPTER 2 - PM Management and IT Context
history of c programming in notes for students .pptx
Advanced SystemCare Ultimate Crack + Portable (2025)
Oracle Fusion HCM Cloud Demo for Beginners
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
AutoCAD Professional Crack 2025 With License Key
Operating system designcfffgfgggggggvggggggggg
17 Powerful Integrations Your Next-Gen MLM Software Needs
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
L1 - Introduction to python Backend.pptx
Ad

Spock - The next stage of Unit testing