Class | Description |
---|---|
getBaseType_Test |
Create a MimeType instance, use it to call getBaseType() method, if
it returns a string representation of this object, then this test
passes, otherwise it fails.
|
getParameter_Test |
Create a MimeType instance, use it to call getParameter() method with a given
string name, if it returns a string value associated with the given name then
this test passes, otherwise it fails.
|
getParameters_Test |
Create a MimeType instance, use it to call getParameters() method, if it
returns enumerated list of MimeTypeParameterList, then this test passes,
otherwise it fails.
|
getPrimaryType_Test |
Create a MimeType instance, use it to call getPrimaryType() method, if it
returns a primary (string) type of this object, then this test passes,
otherwise it fails.
|
getSubType_Test |
Create a MimeType instance, use it to call getSubType() method, if
it returns subtype string of this object then this test passes.
|
match_Test |
Test: boolean match(MimeType); Determine of the primary and sub type
of this object is the same as the what is in the given type.
|
MimeType_Test |
Create MimeType instances, using various constructors, if these
operations are successfull, then this test passes, otherwise
it fails.
|
readExternal_Test |
Test: readExternal(ObjectInput);
|
removeParameter_Test |
Create a MimeType instance, use it to call removeParameter() method with
given string name, then call getParameter(), if this method returns null
(since it has been deleted), then this test passes otherwise it fails.
|
setParameter_Test |
Create a MimeType instance, use it to call setParameter() method
with given string parameters, then call getParameter(), if set/get
values are equal, then this test passes otherwise it fails.
|
setPrimaryType_Test |
Create a MimeType instance, use it to call setPrimaryType() method
with primary type string parameter, then call getPrimaryType(), if
set/get values are equal, then this test passes otherwise it fails.
|
setSubType_Test |
Create a MimeType instance, use it to call setSubType() method
with subtype string parameter, then call getSubType(), if set/get
value is equal, then this test passes otherwise it fails.
|
toString_Test |
Create a MimeType instance, use it to call toString() method,
if it successfully returns non-null string representation of this
object, then this test passes otherwise it fails.
|
writeExternal_Test |
Test: writeExternal(ObjectOutput);
|