php - Is it a good practice to define expectation in dataProvider -


quick example of dataprovider:

return [    ['180d-1pc', '6m-1pc'], ] 

and test:

public function  test_convert($title, $expected) {     $uut = new converter();     $this->assertequals($expected, $uut->convertdaytitle($title)); } 

(simply put: test if convert 180d(days) 6m(months)) can see - in data provider there input data defined , expected output.

this works fine in many cases, keep having feeling maybe it's not best idea. i'm wondering if considered bad practice. if - when see bad idea it?

one example is, when use same dataprovider in 2 tests - should define 2 expected values , use 1 of them?

quick example (i made up, don't pay attention make product object title ;)):

public function test_gets_discount_when_licence_period_longer_than_1year($title, $expectedtitle, $expecteddiscount) {  $prod = new product($title);  $this->assertequals($expecteddiscount, $product->hasdiscount(); } 

how make more elegant?

what you're doing totally fine. data providers can, , should, include expected test result.

about issue of reusing same dataprovider 2 tests, , using fields: i'd if fields related (i.e. properties of same object), can acceptable.

if feel dataprovider getting big , complex because 2 tests must use data it, create 2 separate dataproviders, , use private common method building common data.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -