InterviewSolution
Saved Bookmarks
| 1. |
How can you test a generics class? |
|
Answer» Generics allows creating CLASSES, interfaces or methods that OPERATE with DIFFERENT data types at a time. In order to test Generic entities, we can test it for one or two datatypes for the LOGIC SINCE the datatype allocation are evaluated at compilation time for type-correctness. |
|