2.
Writing a JDK Regression Test
-
How do I write a test?
-
What does the
@test
tag mean?
-
What do the other tags mean?
-
How are tag arguments delimited?
-
If a test fails, do I have to throw
my own exception?
-
Should a test call the
System.exit
method?
-
Can a test write to
System.out
and System.err
?
-
Can a test check the output of
System.out
and System.err
?
-
What should I do with a test once
I've written it?
-
Where is the test directory?
-
Why not have separate test
workspaces that only contain tests?
-
How are the test directories organized?
-
How should I name a test?
-
What about tests that don't fit
into the API structure?
-
Can tests in different directories
have the same name?
-
How do I write a test for an AWT
bug or a Swing bug?
-
How does the user know what to do
for a manual applet test?
-
Exactly what does the
/manual
option mean?
-
How does a manual applet test
indicate success or failure?