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'
This commit is contained in:
Kelly Walker 2019-01-30 09:01:58 -06:00 committed by GitHub
parent 9318a18ccf
commit 2775733ee1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
member variables, optionally giving them initial values.
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()`
function to tear them down.