August 2016
Intermediate to advanced
138 pages
2h 34m
English
© Sándor Gömöri 2016
Rādhārādhya Dāsa, Learn CakePHP, 10.1007/978-1-4842-1212-7_12
Rādhārādhya Dāsa1
(1)Somogyvamos, Hungary

This suit really suits me
While developing a particular feature, we’ll run certain tests. Before deploying, we should run all our tests, to make sure we haven’t broken something. This is the point at which test suites come into the picture.
TestSuite offers a few methods for easily creating test suites, based on the file system.
To create a test suite for all model table tests, we should create a file named AllModelTableTest.php in /tests/TestCase/.
1 <?php2 use Cake\TestSuite\TestSuite;3 ...
Read now
Unlock full access