Created
August 26, 2012 08:02
-
-
Save smallgeek/3475980 to your computer and use it in GitHub Desktop.
NaturalSpec_Tutorial_6_1
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
| /// 事前に定義されたソートのシナリオ | |
| let sortingScenario f list = | |
| Given list | |
| |> When sorting_with f | |
| |> It should be sorted | |
| |> It should contain_all_elements_from list | |
| |> It should contain_no_other_elements_than list | |
| /// 事前に定義されたクイックソートのシナリオ | |
| let quicksortScenario list = sortingScenario QuickSort list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment