diff --git a/user_guide_src/source/testing/overview.rst b/user_guide_src/source/testing/overview.rst index 70848903feeb..e7cba081602e 100644 --- a/user_guide_src/source/testing/overview.rst +++ b/user_guide_src/source/testing/overview.rst @@ -62,13 +62,13 @@ The Test Class ============== In order to take advantage of the additional tools provided, your tests must extend ``\CIUnitTestCase``. All tests -are expected to be located in the **tests/** directory by default. +are expected to be located in the **tests/app** directory by default. -To test a new library, **Foo**, you would create a new file at **tests/TestFoo.php**:: +To test a new library, **Foo**, you would create a new file at **tests/app/Libraries/FooTest.php**:: - `_ class.