-
-
Save jezinka/cf6b07344bb3c6ae122aef6b848a2b72 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| package com.projects.jezinka.conaobiad | |
| import org.spockframework.util.Assert | |
| import spock.lang.Specification | |
| class UnitTests extends Specification { | |
| def "GetSaturdayDate"() { | |
| setup: | |
| MealListHelper mealListHelper = new MealListHelper() | |
| when: | |
| Date resultDate = mealListHelper.getSaturdayDate() | |
| then: | |
| Assert.notNull(resultDate) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment