I have a method similar to this
public void method(final Object A){ .... }
now I want to write a test which ensures Object A is always final. How do I write such test ?
|
I'm afraid you do not understand what your method does. A final parameter in a method means only that the parameter cannot be reassigned in the method.
but
As such, there is no behaviour that can test for. If it is not valid it will not compile. Edit: If you want you unit test for a final I don't that is possible either since I believe that information is lost at time of compilation once it is checked internally. |
|||||||||||
|
method? – andersoj Mar 28 '11 at 15:20