Last active
October 14, 2017 22:40
-
-
Save badrinathvm/7dc3b4f06205cbecf3c55d1a93143b6e to your computer and use it in GitHub Desktop.
Quick Structure
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 QuickStructure: QuickSpec{ | |
override func spec() { | |
describe("Component to be Verified"){ | |
beforeEach { | |
//set up data | |
} | |
context("State of Test Case"){ | |
it(" Expect Validations "){ | |
//expect statements | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment