Unverified Commit 2775733e by Kelly Walker Committed by GitHub

Update advanced.md casing in example

Updated the example that says not to use SetupTestSuite with a small 'u' to actually use a small 'u'
parent 9318a18c
...@@ -1198,7 +1198,7 @@ also supports per-test-suite set-up/tear-down. To use it: ...@@ -1198,7 +1198,7 @@ also supports per-test-suite set-up/tear-down. To use it:
1. Outside your test fixture class (typically just below it), define those 1. Outside your test fixture class (typically just below it), define those
member variables, optionally giving them initial values. member variables, optionally giving them initial values.
1. In the same test fixture class, define a `static void SetUpTestSuite()` 1. In the same test fixture class, define a `static void SetUpTestSuite()`
function (remember not to spell it as **`SetUpTestSuite`** with a small `u`!) function (remember not to spell it as **`SetupTestSuite`** with a small `u`!)
to set up the shared resources and a `static void TearDownTestSuite()` to set up the shared resources and a `static void TearDownTestSuite()`
function to tear them down. function to tear them down.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment