Given the following methods:

public function setFoo($foo) {
    $this->_foo = $foo;
    return $this;
}

public function getFoo() {
    return $this->_foo;
}

Assuming, they may be changed to be more complex in the future:

  • How would you write unit tests for those methods?
  • Just one test method?
  • Should I skip those tests?
  • What about code coverage?
  • How about @covers annotation?
  • Maybe some universal test method to implement in the abstract test case?

(I use Netbeans 7)

This seems like a waste of time, but I wouldn't mind if IDE would generate those test methods automatically.

To qoute from the comment of Sebastian Bergman's blog:

(it's like testing getters and setters -- fail!). In any case, if they were to fail; wouldn't the methods that depend on on them fail?

So, what about the code coverage?

link|improve this question

If you omit the tests (I would), you'll need to make sure to mark some other tests that call them with the appropriate @covers annotations. I sometimes combine these with testConstruct() and move on. As we all know, "accessors are evil!" ;) – David Harkness Feb 15 '11 at 6:56
feedback

2 Answers

up vote 5 down vote accepted

Good Question,

i usually try not to test getters&setters directly since i see a greater benefit in testing only the methods that actually do something.

Especially when not using TDD this has the added benefit of showing me setters that i don't use in my unittests showing me that ether my tests are incomplete or that the setter is not used/needed. "If i can execute all the "real" code without using that setter why is it there."

When using fluent setter i sometimes write a test checking the 'fluent' part of the setters but usually that is covered in other tests.

To answer your list:

  • Just one test method?

That is my least favorite option. All or none. Testing only one is not easy for other people to understand and looks 'random' or needs to be documented in a way.

Edit after comment:

Yes, for "trivial" get/set testing I'd only use one method per property maybe depending on the case even only one method for the whole class (for value objects with many getters and setters I don't want to write/maintain many tests)

  • How would you write unit tests for those methods?
  • Should I skip those tests?

I wouldn't skip them. Maybe the getters depending on how many you have (i tend to write only getters i actually need) but the task of having a class completely covered shouldn't fail because of getters.

  • What about code coverage?
  • How about @covers annotation?

With @covers my take is always "use it everywhere or don't use it at all". Mixing the two 'styles' of testing takes away some of the benefits of the annotation and looks 'unfinished' to me.

  • Maybe some universal test method to implement in the abstract test case?

For something like value objects that could work nicely. It might break (or gets more complicated) once you pass in objects / array with type hinting but I'd presonally prefer it over writing manual tests for 500 getters and setters.

link|improve this answer
By saying: Just one test method? I ment test both setter and getter in one method, not just to test one of them. Any code examples? – takeshin Feb 14 '11 at 10:28
Edited the answer a little. I don't have a code sample at hand (since i mostly don't test the getters/setters directly) but i can write something up if you give me a hint in which direction to go or what kind of example you'd like to see – edorian Feb 14 '11 at 11:18
Thanks for the update. When you test both of the accessors in one method, how do you name it and how do you let know to the code coverage which methods this test covers? Annotation? Then what about annotations in other test methods? (Usually I don't use them at all). – takeshin Feb 14 '11 at 11:26
Some people name it testGetSetProperty, some testAccessProperty and i've seen testProperty too. As long as it is consistent i don't really care, something like that. For @covers just list both/all methods in the tests docblock like here in phpunits own tests github.com/sebastianbergmann/phpunit/blob/3.5/Tests/Framework/… -- Btw: You can find some people to talk about phpunit in the #phpunit FreenodeIrc or in the PHP chat on SO too :) – edorian Feb 14 '11 at 11:33
feedback

This is a common question but strangely can't find a dupe on SO.

You could write unit tests for accessors but the majority of practioners do not. i.e. if the accessors do not have any custom logic, I would not write unit tests to verify if field access works. Instead I would rely on the consumers of these accessors to ensure that the accessors work. e.g. If getFoo and setFoo don't work, the callers of these method should break. So by writing unit tests for the calling methods, the accessors get verified.

This also means that code coverage should not be a problem. If you find accessors that are not covered after all test suites are run, maybe they are redundant / unused. Delete them.

Try to write a test that illustrates a scenario where a client will use that accessor. e.g. The below snippet shows how the Tooltip (property) for the Pause Button toggles based on its current mode.

[Test]
public void UpdatesTogglePauseTooltipBasedOnState()
{
    Assert.That(_mainViewModel.TogglePauseTooltip, Is.EqualTo(Strings.Main_PauseAllBeacons));

    _mainViewModel.TogglePauseCommand.Execute(null);
    Assert.That(_mainViewModel.TogglePauseTooltip, Is.EqualTo(Strings.Main_ResumeAllBeacons));

    _mainViewModel.TogglePauseCommand.Execute(null);
    Assert.That(_mainViewModel.TogglePauseTooltip, Is.EqualTo(Strings.Main_PauseAllBeacons));
}
link|improve this answer
There are similar questions, but none of them provides examples how to actually write the code. – takeshin Feb 14 '11 at 10:30
@takeshin - added code snippet – Gishu Feb 15 '11 at 5:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.