Tweaked note about test cases to the Unit Test section.

This commit is contained in:
Donne Martin 2015-06-25 17:36:19 -04:00
parent bc4f6b6f2e
commit 74b136f0ba

View File

@ -43,8 +43,6 @@
"source": [
"## Test Cases\n",
"\n",
"*Identifying and running through general and edge cases are important. You generally will not be asked to write a unit test like what is shown below.*\n",
"\n",
"* get on an empty hash table index\n",
"* set on an empty hash table index\n",
"* set on a non empty hash table index\n",
@ -154,6 +152,13 @@
"## Unit Test"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"*It is important to identify and run through general and edge cases from the [Test Cases](#Test-Cases) section by hand. You generally will not be asked to write a unit test like what is shown below.*"
]
},
{
"cell_type": "code",
"execution_count": 2,