Class | Description |
---|---|
get_Test |
Create an instance of MimeTypeParameterList, then use it to call get() method,
with a string argument, if it returns a value(non-null/null) associated with
passed in argument, then this test passes, otherwise it fails.
|
getNames_Test |
Create an instance of MimeTypeParameterList, then use it to call getNames() method,
if it returns an enumeration of all the names in this list, then this testcase
passes, otherwise it fails.
|
isEmpty_Test |
Create an instance of MimeTypeParameterList, then use it to call isEmpty() method,
if it returns a boolean value for this list, then this testcase passes, otherwise
it fails.
|
MimeTypeParameterList_Test |
Create MimeTypeParameterList objects using constructors listed below:
|
remove_Test |
TEST: remove(string);
|
set_Test |
TEST: set(string name, string value);
|
size_Test |
Create an instance of MimeTypeParameterList, then use it to call size() method,
if it returns the number of name-value pairs in this list, then this testcase
passes, otherwise it fails.
|
toString_Test |
Create an instance of MimeTypeParameterList, then use it to call toString() method,
if it returns a string representation of this object, then this testcase passes,
otherwise it fails.
|