Using C#, I need a class called User that has a username, password, active flag, first name, last name, full name, etc. There should be methods to Authenticate and Save. Do I just write a test for the methods and do I even need to worry about testing the properties since they are .net getter & setters?
|
13
|
|
|
|
|
|
For simple modules that may end up in a toolkit, or in an open source type of project, you should test as much as possible including the trivial getters and setters. The thing you want to keep in mind is that generating a unit test as you write a particular module is fairly simple and straight forward. Adding getters and setters is minimal code and can be handled without much thought. However, once your code is placed in a larger system, this extra effort can protect you against changes in the underlying system, such as type changes in a base class. Testing everthing is the best way to have a regression that is complete. |
||
|
|
|
|
I second test anything that can possibly break and don't write silly tests. But the most important tenet is test anything that you find is broken: if some method behaves oddly write a test to outline the data set that makes it fail, then correct the bug and watch the bar go green. Also test the "boundary" data values (null, 0, MAX_INT, empty lists, whatever). |
||
|
|
|
|
When writing unit tests, or really any test, you determine what to test by looking at the boundary conditions of what you're testing. For example, you have a function called is_prime. Fortunately, it does what it's name implies and tells you whether the integer object is prime or not. For this I am assuming you are using objects. Now, we would need to check that valid results occurred for a known range of prime and non-prime objects. That's your starting point. Basically, look at what should happen with a function, method, program, or script, and then at what should definitely not happen with that same code. That's the basis for your test. Just be prepared to modify your tests as you become more knowledgeable on what should be happening with your code. |
||
|
|
|
|
Writing code that has no value is always a bad idea. Since the proposed test adds no value to your project (or very close to it). Then your are wasting valuable time that you could spend writing code that actually brings value. |
||
|
|
|
|
I can't speak for C# specificly, but when I write unit tests I test EVERY input, even those the user does not do, that way I know how to prevent my own mistakes. |
||
|
|
