2IP15 Programming Methods

Similar documents
Software Construction

Pages and 68 in [JN] conventions for using exceptions in Java. Chapter 8 in [EJ] guidelines for more effective use of exceptions.

CS 3 Introduction to Software Engineering. 3: Exceptions

Assertions and Exceptions Lecture 11 Fall 2005

Programming II (CS300)

To Think About. MyClass.mogrify(new int[] { 1, 2, 4, 6 }));

Programming II (CS300)

Chapter 9. Exception Handling. Copyright 2016 Pearson Inc. All rights reserved.

Exceptions. CSC207 Winter 2017

Designing Robust Classes

Programming Languages and Techniques (CIS120)

Software Construction

Java Loose Ends. 11 December 2017 OSU CSE 1

COE318 Lecture Notes Week 10 (Nov 7, 2011)

CSC207H: Software Design. Exceptions. CSC207 Winter 2018

Comp 249 Programming Methodology Chapter 9 Exception Handling

ECE 122. Engineering Problem Solving with Java

CS112 Lecture: Exceptions and Assertions

Program Correctness and Efficiency. Chapter 2

Recreation. MyClass.mogrify(new int[] { 1, 2, 4, 6 }));

National University. Faculty of Computer Since and Technology Object Oriented Programming

CS61B Lecture #12. Today: Various odds and ends in support of abstraction.

BBM 102 Introduction to Programming II Spring Exceptions

Exception-Handling Overview

Assoc. Prof. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Preconditions. CMSC 330: Organization of Programming Languages. Signaling Errors. Dealing with Errors

More on Exception Handling

Chapter 8. Exception Handling. CS 180 Sunil Prabhakar Department of Computer Science Purdue University

Inheritance. SOTE notebook. November 06, n Unidirectional association. Inheritance ("extends") Use relationship

CS112 Lecture: Exceptions. Objectives: 1. Introduce the concepts of program robustness and reliability 2. Introduce exceptions

CSE 331 Software Design & Implementation

Topic 6: Exceptions. Exceptions are a Java mechanism for dealing with errors & unusual situations

ITI Introduction to Computing II

Defensive Programming. Ric Glassey

More on Exception Handling

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

Exceptions and assertions

Assertions, pre/postconditions

Exceptions and Libraries

ITI Introduction to Computing II

BBM 102 Introduction to Programming II Spring 2017

Iteration Abstraction

CS1020 Data Structures and Algorithms I Lecture Note #8. Exceptions Handling exceptional events

EXCEPTION HANDLING. Summer 2018

16-Dec-10. Consider the following method:

CS159. Nathan Sprague

Sri Vidya College of Engineering & Technology Question Bank

CSE 143 Java. Exceptions 1/25/

Internal Classes and Exceptions

ASSERTIONS AND LOGGING

CS61B Lecture #12. Programming Contest: Coming up Saturday 5 October. See the contest announcement page, here.

2IP15 Programming Methods

Introduction. Exceptions: An OO Way for Handling Errors. Common Runtime Errors. Error Handling. Without Error Handling Example 1

What is the purpose of exceptions and exception handling? Vocabulary: throw/raise and catch/handle Exception propagation Java checked and unchecked

Day 8. COMP1006/1406 Summer M. Jason Hinek Carleton University

Chapter 13 Exception Handling

About This Lecture. Outline. Handling Unusual Situations. Reacting to errors. Exceptions

Exceptions - Example. Exceptions - Example

Exceptions and Error Handling

Exceptions. Errors and Exceptions. Dealing with exceptions. What to do about errors and exceptions

CSE 331 Final Exam 3/16/15 Sample Solution

Defensive Programming

UNIT 3 ARRAYS, RECURSION, AND COMPLEXITY CHAPTER 11 CLASSES CONTINUED

2IP15 Programming Methods

C16b: Exception Handling

Exceptions. References. Exceptions. Exceptional Conditions. CSE 413, Autumn 2005 Programming Languages

엄현상 (Eom, Hyeonsang) School of Computer Science and Engineering Seoul National University COPYRIGHTS 2017 EOM, HYEONSANG ALL RIGHTS RESERVED

COMP-202. Exceptions. COMP Exceptions, 2011 Jörg Kienzle and others

Type Hierarchy. Comp-303 : Programming Techniques Lecture 9. Alexandre Denault Computer Science McGill University Winter 2004

Exception Handling. Sometimes when the computer tries to execute a statement something goes wrong:

A Third Look At Java. Chapter Seventeen Modern Programming Languages, 2nd ed. 1

Exceptions. Computer Science and Engineering College of Engineering The Ohio State University. Lecture 15

CSE331 Winter 2014, Midterm Examination February 12, 2014

Main concepts to be covered. Handling errors. Some causes of error situations. Not always programmer error. Defensive programming.

Exception Handling. Run-time Errors. Methods Failure. Sometimes when the computer tries to execute a statement something goes wrong:

Chapter 12 Exception Handling

Errors and Exceptions

COMP200 EXCEPTIONS. OOP using Java, based on slides by Shayan Javed

COMP 401 EXCEPTIONS. Instructor: Prasun Dewan

The following topics will be covered in this course (not necessarily in this order).

COMP1008 Exceptions. Runtime Error

Correctness and Robustness

Programming Languages and Techniques (CIS120e)

CS115. Chapter 17 Exception Handling. Prof. Joe X. Zhou Department of Computer Science. To know what is exception and what is exception handling

Typecasts and Dynamic Dispatch. Dynamic dispatch

Assertions & Design-by-Contract using JML Erik Poll University of Nijmegen

2.6 Error, exception and event handling

Chapter 12 Exception Handling and Text IO. Liang, Introduction to Java Programming, Tenth Edition, Global Edition. Pearson Education Limited

Exceptions. CSE 142, Summer 2002 Computer Programming 1.

Exceptions. Readings and References. Exceptions. Exceptional Conditions. Reading. CSE 142, Summer 2002 Computer Programming 1.

Data Structures. 02 Exception Handling

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

17. Handling Runtime Problems

CSCI 261 Computer Science II

Introduction to Software Design

A problem?... Exceptions. A problem?... A problem?... Suggested Reading: Bruce Eckel, Thinking in Java (Fourth Edition) Error Handling with Exceptions

Lecture 4: Procedure Specifications

Exceptions vs. Errors Exceptions vs. RuntimeExceptions try...catch...finally throw and throws

Exceptions. Examples of code which shows the syntax and all that

Lecture 28. Exceptions and Inner Classes. Goals. We are going to talk in more detail about two advanced Java features:

Transcription:

Lecture 3: Robustness 2IP15 Programming Methods From Small to Large Programs Tom Verhoeff Eindhoven University of Technology Department of Mathematics & Computer Science Software Engineering & Technology Group www.win.tue.nl/ wstomv/edu/2ip15 c 2013, T. Verhoeff @ TUE.NL 1/44 2IP15: Lecture 3

Overview Subversion repository for 2IP15 material: https://svn.win.tue.nl/repos/2ip15_2012-2013_student_material See FAQ for details. Robustness (as a way of dealing with defects) Exceptions Runtime Assertion Checking (RAC) Reused and adapted some slide material from Alexandre Denault c 2013, T. Verhoeff @ TUE.NL 2/44 2IP15: Lecture 3

Warning This course focuses on techniques to develop larger programs that must be usable and maintainable by others. Examples and exercises illustrate it by small program fragments. Therefore, the techniques may seem to be overkill. c 2013, T. Verhoeff @ TUE.NL 3/44 2IP15: Lecture 3

What if the precondition is violated? 1 /** Returns the greatest common divisor of n and d. 2 3 * @pre n > 0 && d > 0 4 * @return (\max c; c divides n && c divides d; c) 5 */ 6 public static int gcd (int n, int d) { 7 8 while (n!= d) { 9 if (n > d) { 10 n = n - d; 11 } else { // d > n 12 d = d - n; 13 } 14 } 15 16 return n; 17 } c 2013, T. Verhoeff @ TUE.NL 4/44 2IP15: Lecture 3

Intermezzo: Why is implementation of gcd correct? Defininitions: divisors(a) = { d ( k :: a = kd) } cd(a, b) = divisors(a) divisors(b) (common divisors) gcd(a, b) = cd(a, b) (greatest common divisor) Properties: divisors(a) = a cd(a, b) = cd(b, a) cd(a, b) = divisors(a) if a = b cd(a, b) = cd(a b, b) if a > b gcd(a, b) = gcd(b, a) gcd(a, b) = a if a = b gcd(a, b) = gcd(a b, b) if a > b c 2013, T. Verhoeff @ TUE.NL 5/44 2IP15: Lecture 3

Intermezzo: Why is implementation of gcd correct? 1 /** Returns the greatest common divisor of n and d. 2 * @pre n > 0 && d > 0 3 * @return (\max c; c divides n && c divides d; c) 4 */ 5 public static int gcd (int n, int d) { 6 // inv I0: 0 < n <= \old(n) && 0 < d <= \old(d) 7 // inv I1: gcd(n, d) == gcd(\old(n), \old(d)) 8 // bound: n + d (for termination) 9 while (n!= d) { 10 if (n > d) { // gcd(n, d) == gcd(n-d, d) 11 n = n - d; 12 } else { // n < d: gcd(n, d) == gcd(n, d-n) 13 d = d - n; 14 } 15 } 16 // n == d, hence gcd(\old(n), \old(d)) == gcd(n, d) == n 17 return n; 18 } c 2013, T. Verhoeff @ TUE.NL 6/44 2IP15: Lecture 3

Solution #1 (to violated precondition): Do Nothing Special Partial function: It is up to the user to call gcd correctly. What happens if the user does call gcd with n = 0 or d = 0? And what if n < 0 or d < 0? Partial functions lead to programs that are not robust. A robust program continues to behave reasonably in the presence of defects: At best: provide an approximation of defect-free behavior. Also known as graceful degradation. At worst: halt with a meaningful error message without causing damage to permanent data. c 2013, T. Verhoeff @ TUE.NL 7/44 2IP15: Lecture 3

Solution #2: Return Special Result Return 0: 0 cannot be the result of a correctly called gcd, so can be used as a special result. What happens if you return 0 as the result of gcd? Now the caller must check for the special result. This is inconvenient. Sometimes the whole range of return values is legal, so there is no special result to return. For example, the get method in a List returns the value of the list s i-th element (either null or an Object). There are no values to convey that the index is out of bounds. c 2013, T. Verhoeff @ TUE.NL 8/44 2IP15: Lecture 3

Solution #3: Use an Exception An Exception signals that something unusual occurred. Exceptions bypass the normal control flow : A() calls B() calls C() calls D() D throws an exception A catches the exception All the remaining code in D, C, and B is skipped Exceptions cannot be ignored; the program terminates if an exception is not caught anywhere. The use of exceptions is supported by Java Exception types. c 2013, T. Verhoeff @ TUE.NL 9/44 2IP15: Lecture 3

Exceptions in Java and Other Languages The exception mechanism in Java has some peculiarities. Other programming languages may have an exception mechanism, but it probably differs from Java in the details. We present an approach that can also be used in other languages, but we cannot avoid some Java details. c 2013, T. Verhoeff @ TUE.NL 10/44 2IP15: Lecture 3

How to Put Exceptions in Contracts Syntactic part of specificying exceptions The method header lists exceptions that are part of specified behavior in a throws clause : public static int fact (int n) throws NegativeException More than one exception can be thrown: public static int find (int x, int [ ] a) throws NullPointerException, NotFoundException Semantic part of specifying exceptions The javadoc throws tag states the conditions for exceptions; the postcondition specifies the resulting state when no exception was thrown: /** @throws NullPointerException if a == null * @throws NotFoundException if x does not occur in a * @pre a!= null && x occurs in a * @post 0 <= \result < a.length && a[\result] == x */ c 2013, T. Verhoeff @ TUE.NL 11/44 2IP15: Lecture 3

Contracts That Involve Exceptions Termination of a method by throwing an exception is ok, but it must be in the contract (and be aware of a performance penalty). A method that always throws an exception when its precondition is violated is said to be robust. When a method has side effects, its contract should clarify how side effects interact with exceptions. The @modifies clause only lists inputs that can be modified, but it does not say under what conditions. The postcondition should explicitly specify under what circumstances modifications occur and when not. c 2013, T. Verhoeff @ TUE.NL 12/44 2IP15: Lecture 3

Exception Type Hierarchy in Package java.lang Object In Java, Exceptions are objects, existing in the object hierarchy: Error Throwable RuntimeException Exception Unchecked checked exceptions unchecked exceptions c 2013, T. Verhoeff @ TUE.NL 13/44 2IP15: Lecture 3

Constructing Exception Objects A simple exception; only its type conveys information (avoid this): Exception e1 = new MyException(); An exception with some extra info in a string (recommended): Exception e2 = new MyException( "where and why this exception occurred"); Or even passing an object (not needed in 2IP15): Exception e3 = new MyException( "where and why this exception occurred", someobjectwhichcausedtheexception); c 2013, T. Verhoeff @ TUE.NL 14/44 2IP15: Lecture 3

Defining Exceptions The following is minimal (does not allow a message): public class MyException extends Exception { } To have a constructor with a message, you need: public class MyException extends Exception { MyException() { super(); } MyException(String s) { super(s); } } Exceptions may be much more elaborate: public class MyException extends Exception { Object offensiveobject; MyException(String s; Object o) { super(s); offensiveobject = o; } Object getoffensiveobject() { return offensiveobject; } } c 2013, T. Verhoeff @ TUE.NL 15/44 2IP15: Lecture 3

Defining Exceptions (2) You can use Exception and RuntimeException directly, without using or defining a (new) subtype exception. But this is not good programming style, because it does not convey much information (is too vague, too general). You can use other predefined exceptions, when appropriate. E.g. NullPointerException, IndexOutOfBoundsException...Exception naming is not enforced, but this is good practice. In 2IP15, use IllegalArgumentException or IllegalStateException to signal precondition violations. c 2013, T. Verhoeff @ TUE.NL 16/44 2IP15: Lecture 3

Where to Define Exception Types? Some Exceptions occur in many packages (e.g.: NotFoundException). It makes sense to avoid naming conflicts and define a separate Exception package. However, if special Exceptions are thrown by your package, you can define them inside your package. c 2013, T. Verhoeff @ TUE.NL 17/44 2IP15: Lecture 3

Throwing Exceptions public static int fact (int n) throws NegativeException {... if (n < 0) { throw new NegativeException( "Num.fact.pre violated: n == " + n + " < 0"); }... } What to put in the message string? Convey information about what went wrong where : minimally the class and method that threw the Exception. Note that many methods may throw the same exception. c 2013, T. Verhoeff @ TUE.NL 18/44 2IP15: Lecture 3

Catching Exceptions try { x = Num.fact(y); } catch (NegativeException e) { // in here, use e System.out.println(e); } This code handles the exception explicitly. N.B. If an exception is caught nowhere, execution terminates. If a NegativeException is thrown anywhere within the try block, execution proceeds at the start of the catch block, after the thrown exception is assigned to e. c 2013, T. Verhoeff @ TUE.NL 19/44 2IP15: Lecture 3

Variations on Catching Multiple catch clauses can be used to handle different types of exceptions: try { x.foobar() } catch (OneException e) {... } catch (AnotherException e) {... } catch (YetAnotherException e) {... } You can also use nested try clauses. Here, the inner try block throws anotherexception. It is handled by the outer catch clause. try {... try {... throw new anotherexception();... } catch (SomeException e) {... throw new anotherexception();...}... } catch (anotherexception e) {... } c 2013, T. Verhoeff @ TUE.NL 20/44 2IP15: Lecture 3

Exceptions & Subtypes try {... throw new oneexception();... throw new anotherexception();... } catch (Exception e) {... } This catch clause will catch all exceptions occurring within the try block. The catch clause can list a supertype of the exception so that multiple exceptions that are subclasses can be caught (handled) by the same catch clause. A compile error will occur, if a catch clause for a superclass exception appears before a catch clause for a subclass exception. c 2013, T. Verhoeff @ TUE.NL 21/44 2IP15: Lecture 3

Catching Exceptions: complete version of try statement try { statements_in_try_block } catch (Type_1_Exception identifier_1) { statements_handling_type_1_exception } catch (Type_n_Exception identifier_n) { statements_handling_type_n_exception } finally { statements_to_wrap_up } 1. The statements within the try block are executed. 2. If an exception occurs, execution of the try block stops, and the first catch clause matching the exception is executed. 3. Statements in the finally block are always executed, even if the exception is not caught and, hence, will be propagated. c 2013, T. Verhoeff @ TUE.NL 22/44 2IP15: Lecture 3

Exception Handling: A word of warning Control flow in try statements is implicit and invisible, depending on the occurence of exceptions. Pretty weird control flows are possible when handling exceptions, especially when using the finally clause. Do not abuse exceptions for fancy control flow: catch clauses are usually implemented inefficiently because they are exceptional; that is, there is a (heavy) performance penalty when exceptions occur. c 2013, T. Verhoeff @ TUE.NL 23/44 2IP15: Lecture 3

Kinds of Exceptions: Checked Checked exceptions: subclass of Exception but not of RuntimeException must be listed in the throws clause of the method that can throw the exception. must be handled by the caller code, either by propagation, or catching, otherwise, a compile-time error occurs. typically, used to signal recoverable special situations. Example: FileNotFoundException thrown by java.util.scanner(...) c 2013, T. Verhoeff @ TUE.NL 24/44 2IP15: Lecture 3

Kinds of Exceptions: Unchecked Unchecked exceptions: RuntimeException and subclasses don t have to be listed in the throws clause. But it is good practice to list unchecked exceptions that can be thrown, especially if it can be expected that the caller can usefully catch the exception. don t have to be handled explicitly by the caller. typically, used to signal non-recoverable failures. Examples: NullPointerException, IndexOutOfBoundsException c 2013, T. Verhoeff @ TUE.NL 25/44 2IP15: Lecture 3

Handling Exceptions Implicitly If method m calls method p without wrapping the call in a try clause, then an exception thrown by p aborts execution of m and the exception is propagated to the method that called m. (A calls B calls C calls D throws e, A catches e) To propagate a checked exception, the calling method must list the thrown exception. (If not, a compile error results.) Unchecked exceptions are automatically propagated until they reach an appropriate catch clause. (Not enforced by compiler) But you can still list unchecked exceptions in the header, and it is good practice to do so. (The user is made aware of the unchecked exception and can catch it if desired.) c 2013, T. Verhoeff @ TUE.NL 26/44 2IP15: Lecture 3

Programming with Exceptions How to handle thrown exceptions? Possibilities: Handle specifically : separate catch clauses deal with each situation in a different way Handle generically : one catch clause for supertype exception takes generic action like println and halt or restart program from earlier state Reflect the exception: the caller also terminates by throwing an exception, either implicilty by propagation or expclicitly by throwing a different exception (usually better) Mask the exception: the caller catches the exception, ignores it, and continues with normal flow c 2013, T. Verhoeff @ TUE.NL 27/44 2IP15: Lecture 3

Reflection (a.k.a. Translation) 1 // Coding Standard violated to fit on one slide 2 /** @throws NullPointerException if a == null 3 * @throws EmptyException if a.length == 0 4 * @pre a!= null && a.length!= 0 5 * @post \result == (\min i; a.has(i); a[i]) */ 6 public static min (int [ ] a) 7 throws NullPointerException, EmptyException { 8 int m; // minimum of elements of a 9 try { 10 m = a[0]; 11 } catch (IndexOutOfBoundsException e) { 12 throw new EmptyException("Arrays.min.pre violated"); 13 } 14 for (int element : a) { 15 if (element < m) { m = element; } 16 } 17 return m; 18 } c 2013, T. Verhoeff @ TUE.NL 28/44 2IP15: Lecture 3

Masking 1 // Coding Standard violated to fit on one slide 2 /** @throws NullPointerException if a == null 3 * @pre a!= null 4 * @post \result == a is sorted in ascending order */ 5 public static boolean sorted (int [ ] a) 6 throws NullPointerException { 7 8 int prev; 9 10 try { prev = a[0]; } 11 catch (IndexOutOfBoundsException e) { return true; } 12 13 for (int element : a) { 14 if (prev <= element) { prev = element; } 15 else { return false; } 16 } 17 return true; 18 } c 2013, T. Verhoeff @ TUE.NL 29/44 2IP15: Lecture 3

When to throw exceptions? Design Issues To make method contracts robust. To avoid encoding information in ordinary or extra results. To signal special usually erroneous situations, often in non-local use of functions (that is, propagating across calls). To guarantee that detected failures cannot be ignored. When not to throw exceptions? When the context of use is local (consider use of assert). When the precondition is too expensive or impossible to check. c 2013, T. Verhoeff @ TUE.NL 30/44 2IP15: Lecture 3

Exceptions are Exceptional Exceptions should not be thrown as a result of normal use of a program. Catching exceptions is not efficient. When reading code, you should be able to understand normal behavior, by ignoring exceptions. There are other ways to discontinue execution in non-exceptional cases: break: terminates switch, for, while, do continue: skips to end of loop body return: terminates method c 2013, T. Verhoeff @ TUE.NL 31/44 2IP15: Lecture 3

Defensive Programming Defensive programming is the attitude to include run-time checks for bad situations that should never occur (but still could occur due to unforeseen circumstances: environment, other programmers). These situations are usually not covered in specifications. Exceptions or assert statements can be used, because they do not burden the normal control flow. Typically, you could use one generic unchecked exception. E.g. FailureException if (unimaginable) { throw new FailureException( "class C, method M: the unimaginable happened"); } c 2013, T. Verhoeff @ TUE.NL 32/44 2IP15: Lecture 3

Exceptions versus assert statements assert assert booleanexpr booleanexpr : stringexpr if (! booleanexpr ) throw new AssertionError(stringExpr ); Note that AssertionError is an Error, not an Exception. Cannot be caught; always aborts execution; cannot unit test it. Execution of assert is disabled by default; to enable: in DrJava: Preferences > Miscellaneous > JVMs: JVM Args for Main JVM -ea in NetBeans: Project Properties > Run > VM Options: -ea c 2013, T. Verhoeff @ TUE.NL 33/44 2IP15: Lecture 3

When to Throw Exceptions in This Course? Non-private methods: Strive for robustness, except when performance would suffer disproportionately. Contracts must explicitly state conditions for exceptions. Use if and throw an exception, e.g. IllegalArgumentException Can use assert for situations not covered by exceptions. Private methods: May have stronger precondition without explicit exceptions. You are encouraged to use assert to check precondition. c 2013, T. Verhoeff @ TUE.NL 34/44 2IP15: Lecture 3

Checked versus Unchecked Exceptions Advantages of checked exceptions: Compiler enforces proper use (code must catch or propagate). Prevents wrongly captured exceptions. Disadvantages of checked exceptions: Forces developer to deal with them explicitly, even in cases where they provably will not occur. Use unchecked exceptions if you expect they will not occur, because they can be conveniently and inexpensively avoided. Otherwise, use checked exceptions; i.e., when they cannot be avoided easily. c 2013, T. Verhoeff @ TUE.NL 35/44 2IP15: Lecture 3

How to Handle Exceptions in This Course? In unit tests: Always check that exceptions are thrown properly according to the contract. In non-test code: Never catch unchecked exceptions, unless...... there is an important reason and good way for recovering. Unchecked exceptions should signal the presence of a defect. Checked exceptions must be handled: recover or propagate. Checked exceptions should signal a recoverable special situation, typically from using a standard library method (e.g. for I/O). c 2013, T. Verhoeff @ TUE.NL 36/44 2IP15: Lecture 3

Exceptions and Javadoc In javadoc comment: @throws Exception-class-name Description 1 /** 2 * Returns n factorial. 3 * 4 * @param n non-negative integer 5 * @return {@code n} factorial 6 * @throws IllegalArgumentException if {@code n < 0} 7 * @pre {@code 0 <= n} 8 * @post {@code \result == n!} 9 */ 10 public static int fact (int n) throws IllegalArgumentException { 11 if (n < 0) { 12 throw new IllegalArgumentException( 13 "Num.fact.pre violated: n == " + n + " < 0"); 14 } // 0 <= n 15... 16 } c 2013, T. Verhoeff @ TUE.NL 37/44 2IP15: Lecture 3

Exceptions and Unit Testing: Principles When the contract of a method involves exceptions, it is necessary to test for their proper occurrence in unit tests: Create situations that are intended to trigger an exception. When the appropriate exception is thrown, the test passes. When no exception is thrown, the test fails. When the wrong exception is thrown, the test also fails. Advise: Also test that the exception message is present. c 2013, T. Verhoeff @ TUE.NL 38/44 2IP15: Lecture 3

Exceptions and Unit Testing: Simple Scheme for JUnit 4.x 1 /** Tests {@link xxx} for proper exceptions. */ 2 @Test(expected = YyyException.class) 3 public void testxxxexceptions() { 4 xxx(expr1,...); 5 } This test case passes if xxx throws an exception that is equal to or a subtype of YyyException This test case fails if xxx does not throw an exception if xxx throws an exception that is not equal to or a subtype of YyyException c 2013, T. Verhoeff @ TUE.NL 39/44 2IP15: Lecture 3

Exceptions and Unit Testing: General Scheme 1 /** Tests {@link xxx} for proper exceptions. */ 2 public void testxxxexceptions() { 3 Class expected = YyyException.class; 4 try { 5 xxx(expr1,...); 6 fail("should have thrown " + expected); 7 } catch (Exception e) { 8 asserttrue("type; " + e.getclass().getname() 9 + " should be instance of " + expected, 10 expected.isinstance(e)); 11 assertnotnull("message should not be empty", e.getmessage()); 12 } 13 } Also tests that exception message is not null. c 2013, T. Verhoeff @ TUE.NL 40/44 2IP15: Lecture 3

Exceptions and Unit Testing: Example 1 /** Test of {@link WordLibrary#getWord}. */ 2 public void testgetwordforexception() { 3 checkindex(-1, ArrayIndexOutOfBoundsException.class); 4 checkindex(wordlibrary.getsize(), ArrayIndexOutOfBoundsException.class) 5 } 6 /** Checks whether index i throws expected exception 7 * @param i the index to check */ 8 private void checkindex(int i, Class expected) { 9 try { 10 WordLibrary.getWord(i); 11 fail("index " + i + " should have thrown " + expected); 12 } catch (Exception e) { 13 asserttrue("type; " + e.getclass().getname() 14 + " should be instance of " + expected, 15 expected.isinstance(e)); 16 assertnotnull("message should not be empty", e.getmessage()); 17 } 18 } c 2013, T. Verhoeff @ TUE.NL 41/44 2IP15: Lecture 3

Assignments Series 2 Refresher: consult book by Eck: 3.7, 8.3, 8.4.1 Apply Test-Driven Development, including Exceptions, to IntRelation c 2013, T. Verhoeff @ TUE.NL 42/44 2IP15: Lecture 3

Summary The contract of a robust method specifies behavior in all cases. When precondition is violated, throw an Exception or Error. Use exceptions or assertions to inform and to avoid harm. c 2013, T. Verhoeff @ TUE.NL 43/44 2IP15: Lecture 3

Summary (cont d) assert throws an Error; terminates execution, cannot be caught. Exceptions provide a mechanism to bypass normal control flow, in case of failures or special situations. Java exceptions involve: objects that are instances of Exception or its subclasses throws clauses in method headers contracts that specify which exceptions are thrown when by @throws tags in javadoc comments throw statements try... catch... finally statements c 2013, T. Verhoeff @ TUE.NL 44/44 2IP15: Lecture 3