From Fedora Project Wiki
(Created page with "{{QA/Test_Case |description=A brief description of the functionality being tested. |setup=Optionally include information on preparing the test environment |actions= Be as spec...")
 
No edit summary
Line 1: Line 1:
{{QA/Test_Case
{{QA/Test_Case
|description=A brief description of the functionality being tested.
|description= To test if Java is getting properly installed and functioning well.
|setup=Optionally include information on preparing the test environment
|actions=
|actions=
Be as specific as required for the target audience.
# Execute <code>sudo dnf install java</code>
# Start here ...
# Execute <code> java -version </code>
# Next do this ...
# Finally click that
|results=
|results=
The following must be true to consider this a successful test run. Be brief ... but explicit.
Observe before carefully
# Step #1 completes without error
# JRE should get installed
# The system boots into runlevel 5
# Java path should be configured and working
# Program completes with exit code 0
# Java applications should function correctly
|optional=Optionally provide hints for exploratory testing.
# Contents in <code> /usr/lib/jvm </code> should be sane
# Contents in <code> /etc/java </code> should be sane (jdk8 got /etc/java support in f29)
# Verifiy all alternatives are in place
}}
}}

Revision as of 18:30, 18 September 2018

Description

To test if Java is getting properly installed and functioning well.


How to test

  1. Execute sudo dnf install java
  2. Execute java -version

Expected Results

Observe before carefully

  1. JRE should get installed
  2. Java path should be configured and working
  3. Java applications should function correctly
  4. Contents in /usr/lib/jvm should be sane
  5. Contents in /etc/java should be sane (jdk8 got /etc/java support in f29)
  6. Verifiy all alternatives are in place