Skip to content

Commit 4ea8b07

Browse files
committed
Merge branch 'develop'
2 parents 35a8d5b + eaf56d0 commit 4ea8b07

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ Unitary will, by default, find all files prefixed with "unitary-" recursively fr
3838

3939
Start by creating a test file with a name that starts with "unitary-", e.g., "unitary-lib-name.php". You can place the file inside `tests/unitary-lib-name.php` for example.
4040

41+
**Note: All of your library classes should be automatically be autoloaded when used in test file!**
42+
4143
```php
4244
<?php
4345
// If you add the argument "true" to the Unit class, it will run in quiet mode
4446
// and only report if it finds any errors.
45-
$unit = new MaplePHP\Unitary\Unit(true);
47+
$unit = new MaplePHP\Unitary\Unit();
4648

4749
// Add a title to your tests (optional)
4850
$unit->addTitle("Testing MaplePHP Unitary library!");

0 commit comments

Comments
 (0)