Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Sebastian Bergmann's Blog:
Data Providers in PHPUnit 3.2
Oct 15, 2007 @ 14:36:00

Sebastian Bergmann has pointed out a new offering that PHPUnit will have starting with version 3.2 - TestNG-style data parameters.

He includes a test case example that sets up a test method (dataProvider) that checks the input against the assert to ensure that it matches - in those case, that it matches an integer value.

The method specified by the @dataProvider annotation returns an array or an Iterator object that contain argument arrays. For each of these arrays a test object is created that will run the test method with the argument from the array.

As test run of the instance is also included.

tagged: data provider phpunit testng assertequals example data provider phpunit testng assertequals example

Link:

Sebastian Bergmann's Blog:
Data Providers in PHPUnit 3.2
Oct 15, 2007 @ 14:36:00

Sebastian Bergmann has pointed out a new offering that PHPUnit will have starting with version 3.2 - TestNG-style data parameters.

He includes a test case example that sets up a test method (dataProvider) that checks the input against the assert to ensure that it matches - in those case, that it matches an integer value.

The method specified by the @dataProvider annotation returns an array or an Iterator object that contain argument arrays. For each of these arrays a test object is created that will run the test method with the argument from the array.

As test run of the instance is also included.

tagged: data provider phpunit testng assertequals example data provider phpunit testng assertequals example

Link:

Sebastian Bergmann's Blog:
TestNG-style Grouping of Tests
Sep 04, 2007 @ 13:12:00

Sebastian Bergmann demonstrates another feature of the popular PHPUnit unit testing software in new post to his blog, specifically the TestNG-style of test.

Starting with version 3.2, PHPUnit has support for TestNG-style @grouping of tests.

He includes an example of the style, a test case that, through the command line testing tool, can be called in portions depending on the need.

tagged: testng unittest phpunit support group commandline testng unittest phpunit support group commandline

Link:

Sebastian Bergmann's Blog:
TestNG-style Grouping of Tests
Sep 04, 2007 @ 13:12:00

Sebastian Bergmann demonstrates another feature of the popular PHPUnit unit testing software in new post to his blog, specifically the TestNG-style of test.

Starting with version 3.2, PHPUnit has support for TestNG-style @grouping of tests.

He includes an example of the style, a test case that, through the command line testing tool, can be called in portions depending on the need.

tagged: testng unittest phpunit support group commandline testng unittest phpunit support group commandline

Link:


Trending Topics: