Commit f0d6b560 by Mark

small typo fix

parent bec6743e
...@@ -13,7 +13,7 @@ and application destroy after each test. You can configure your application by t ...@@ -13,7 +13,7 @@ and application destroy after each test. You can configure your application by t
methods and assertions are available. methods and assertions are available.
```php ```php
SomeConsoleTestTest extends yii\codeception\TestCase SomeConsoleTest extends yii\codeception\TestCase
{ {
# by default it is @tests/unit/_bootstrap.php which holds some basic things like: # by default it is @tests/unit/_bootstrap.php which holds some basic things like:
# including composer autoload, include BaseYii class. # including composer autoload, include BaseYii class.
...@@ -51,7 +51,7 @@ SomeDebugTest extends yii\codeception\TestCase ...@@ -51,7 +51,7 @@ SomeDebugTest extends yii\codeception\TestCase
public function testSmth() public function testSmth()
{ {
Debug::debug('some my string); Debug::debug('some my string');
Debug::debug($someArray); Debug::debug($someArray);
Debug::debug($someObject); Debug::debug($someObject);
} }
...@@ -62,7 +62,7 @@ SomeDebugTest extends yii\codeception\TestCase ...@@ -62,7 +62,7 @@ SomeDebugTest extends yii\codeception\TestCase
Then run command ```php codecept.phar run --debug unit/SomeDebugTest``` (Codeception also available through composer) and you will see in output: Then run command ```php codecept.phar run --debug unit/SomeDebugTest``` (Codeception also available through composer) and you will see in output:
```html ```html
some string some my string
Array Array
( (
......
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