/MyTestClassSpecs2Vanilla.scala Secret
Last active
May 11, 2017 10:26
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyTestClass extends SpecificationWithJUnit with AfterAll { | |
val person = Person(carId = None).save() // creating data for test | |
val car = Car(color = "green", ownerId = None).save() | |
override def afterAll(): Unit = { | |
// Clean db after test. | |
person.destroy() | |
car.destroy() | |
} | |
"My service" should { | |
"set the owner of the car" in { | |
val service = new Service | |
service.setCarOwner(carId = car.id, ownerId = person.id) | |
service.getPerson(person.id).carId must be equalTo Some(car.id) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment