Test Plan and Test Cases Frequently we interact with software applications. Some
ID: 3598344 • Letter: T
Question
Test Plan and Test Cases
Frequently we interact with software applications. Some of these interactions includes, but not limited to: on-line banking account, various social media accounts.
For this project assignment:
1. Choose a software interaction for your testing.
2. For the software you selected, choose at least five software features (functional and
non-functional) for your scope of testing and assume it is your responsibility to test
the selected features.
3. Develop a Test Plan document for your scope
Download Template: https://drive.google.com/open?id=0B5HjVVkWJYBING1XTHBuMTB4bnc
4. Develop a Test Cases document for the five software features
Download Template: https://drive.google.com/open?id=0B5HjVVkWJYBING1XTHBuMTB4bnc
Explanation / Answer
package com;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class ReadFileExample1 {
private static final String FILENAME = "D:\test.txt";
public static void main(String[] args) {
BufferedReader br = null;
FileReader fr = null;
try {
//br = new BufferedReader(new FileReader(FILENAME));
fr = new FileReader(FILENAME);
br = new BufferedReader(fr);
String sCurrentLine;
while ((sCurrentLine = br.readLine()) != null) {
System.out.println(sCurrentLine);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)
br.close();
if (fr != null)
fr.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.