Skip to Content
The Art of Software Testing, 3rd Edition
book

The Art of Software Testing, 3rd Edition

by Glenford J. Myers, Corey Sandler, Tom Badgett
November 2011
Intermediate to advanced
240 pages
6h 2m
English
Wiley
Content preview from The Art of Software Testing, 3rd Edition

Appendix

Sample Extreme Testing Application

1. check4Prime.java

To compile:

 &> javac check4Prime.java

To run:

 $> java -cp check4Prime 5

Right . . . 5 is a prime number!

 $> java -cp check4Prime 10

Sorry . . . 10 is NOT a prime number!

 $> java -cp check4Prime A
 Usage: check4Prime x
        - where 0<=x<=1000

Source code:

  //check4Prime.java//
  Imports
  import java.lang.*;
  public class check4Prime {
    static final int max = 1000;   // Set upper bounds.
    static final int min = 0;      // Set lower bounds
    static int input =0;           // Initialize input variable
  public static void main (String [] args) {
    //Initialize class object to work with
    check4Prime check = new check4Prime();
    try{
    //Check arguments and assign value to input variable
      check.checkArgs(args);
    //Check for Exception and display help
    }catch (Exception e){
      System.out.println("Usage: check4Prime x");
      System.out.println("-- where 0<=x<=1000");
   System.exit(1);
   }
   //Check if input is a prime number
   if (check.primeCheck(input))
      System.out.println("Right... " + input + " is a prime number!");
   else
      System.out.println("Sorry... " + input + " is NOT a prime number!");
 } //End main
 //Calculates prime numbers and compares it to the input
 public boolean primeCheck (int num){
    double sqroot = Math.sqrt(max);// Find square root of n
 //Initialize array to hold prime numbers
 boolean primeBucket [] = new boolean [max+1];
 //Initialize all elements to true, then set non-primes to false
 for (int i=2; i<=max; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

The Art of Software Testing, Second Edition

The Art of Software Testing, Second Edition

Glenford J. Myers, Corey Sandler, Tom Badgett, Todd M. Thomas
Software Requirements, 3rd Edition

Software Requirements, 3rd Edition

Karl Wiegers, Joy Beatty

Publisher Resources

ISBN: 9781118133156Purchase book