Tweaked note about test cases to the Unit Test section.

This commit is contained in:
Donne Martin
2015-06-25 17:37:06 -04:00
parent abe70d3146
commit b114d8c673

View File

@@ -43,8 +43,6 @@
"source": [ "source": [
"## Test Cases\n", "## Test Cases\n",
"\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",
"* Any strings that differ in size results in False\n", "* Any strings that differ in size results in False\n",
"* NULL, 'foo' -> False (any NULL results in False)\n", "* NULL, 'foo' -> False (any NULL results in False)\n",
"* ' ', 'foo' -> False\n", "* ' ', 'foo' -> False\n",
@@ -105,6 +103,13 @@
"## Unit Test" "## 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", "cell_type": "code",
"execution_count": 2, "execution_count": 2,