Monday, March 27, 2017

What is a @dataProvider?

I'm asked about data providers almost every time I introduce a developer to PHPUnit. Once you understand them, they're quite clear, but on first pass they seem to give developers pause.

So what are they? Practically, a data provider is any static method that produces an array of arrays. The outer array defines the iterations of the test loop, while the inner arrays are the arguments to pass to each iteration. Let's look at an example. First, annotate a test method's docblock:

/**
 * @dataProvider provides_foo_and_bar
 */
public function test_frobnicator($foo, $bar) { /* ... */ }

Then define the data provider:

public static function provides_foo_and_bar() {
    return [
        [ 'FOO', 'BAR' ],
        [ 'BAZ', 'QUUX' ],
    ];
}

PHPUnit will call provides_foo_and_bar twice. The first time it will pass test_frobnicator with "FOO" and "BAR". The second time it will call test_frobnicator with "BAZ" and "QUUX". Note that the data provider is both public and static: PHPUnit requires that.

Pro-top: by default, phpunit runs all data sets. But, you can select specific data sets to run easily: phpunit FrobnicateModel.php test_frobnicate#1 runs only one loop, with the 1-index elements "BAZ" and "QUUX".

Related Posts:

  • How software diesWhen software reaches its design apex, the passion to develop it wanes and it begins descending through maintenance hell.  What was once state-of-the-art becomes legacy, and once legacy becomes abandonware.  Except … Read More
  • "Writable" is wrong!Incorrect and inconsistent spelling makes searching harder: function initDb() {     $datbase = PDO::get();     $datbase->check();} If I searched my code base for "database", I'd miss this hit.  T… Read More
  • Laravel Tip: API Quick reference with LionaIf you've never visited the #Laravel IRC channel, today might be the day to stop by. Besides offering authoritative answers to Laravel questions, the channel also offers instant access to all the Laravel API documentation. In… Read More
  • Memoization 2.0You might think "Memoization" is a typo, but it's not. Memoization is a simple technique to improve software performance. Unfortunately, the technique relies upon repetitive boilerplate. In this article, I show you how to … Read More
  • App::error, Accept:application/json, and app.debug = falseApplication crashed? Client only accepts application/json? Unless your Laravel 4 application is in debug mode, you're out of luck: the client receives text/html! I've been working with a mobile app developer recently to flu… Read More

0 comments:

Post a Comment

Share your thoughts!