org.scalatest.Assertions.scala Maven / Gradle / Ivy
Show all versions of scalatest_2.8.1 Show documentation
/* * Copyright 2001-2008 Artima, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.scalatest import scala.reflect.Manifest import Assertions.areEqualComparingArraysStructurally /** * Trait that contains ScalaTest's basic assertion methods. * *Equalizer. * * ** You can use the assertions provided by this trait in any ScalaTest
* *Suite, becauseSuite* mixes in this trait. This trait is designed to be used independently of anything else in ScalaTest, though, so you * can mix it into anything. (You can alternatively import the methods defined in this trait. For details, see the documentation * for theAssertionscompanion object. ** In any Scala program, you can write assertions by invoking
* *assertand passing in aBooleanexpression, * such as: ** val left = 2 * val right = 1 * assert(left == right) ** ** If the passed expression is
true,assertwill return normally. Iffalse, *assertwill complete abruptly with anAssertionError. This behavior is provided by * theassertmethod defined in objectPredef, whose members are implicitly imported into every * Scala source file. ThisAssertionstraits defines anotherassertmethod that hides the * one inPredef. It behaves the same, except that iffalseis passed it throws *TestFailedExceptioninstead ofAssertionError. The reason it throwsTestFailedException* is becauseTestFailedExceptioncarries information about exactly which item in the stack trace represents * the line of test code that failed, which can help users more quickly find an offending line of code in a failing test. ** *
* If you pass the previous
* *Booleanexpression,left == righttoassertin a ScalaTest test, a failure * will be reported, but without reporting the left and right values. You can alternatively encode these values in aStringpassed as * a second argument toassert, like this: ** val left = 2 * val right = 1 * assert(left == right, left + " did not equal " + right) ** ** Using this form of
* *assert, the failure report will include the left and right values, thereby * helping you debug the problem. However, ScalaTest provides the===operator to make this easier. * You use it like this: ** val left = 2 * val right = 1 * assert(left === right) ** ** Because you use
* *===here instead of==, the failure report will include the left * and right values. For example, the detail message in the thrownTestFailedExceptionfrom theassert* shown previously will include, "2 did not equal 1". * From this message you will know that the operand on the left had the value 2, and the operand on the right had the value 1. ** If you're familiar with JUnit, you would use
* *===* in a ScalaTestSuitewhere you'd useassertEqualsin a JUnitTestCase. * The===operator is made possible by an implicit conversion fromAny* toEqualizer. If you're curious to understand the mechanics, see the documentation for *Equalizerand theconvertToEqualizermethod. *Expected results
* * Although===provides a natural, readable extension to Scala'sassertmechanism, * as the operands become lengthy, the code becomes less readable. In addition, the===comparison * doesn't distinguish between actual and expected values. The operands are just calledleftandright, * because if one were namedexpectedand the otheractual, it would be difficult for people to * remember which was which. To help with these limitations of assertions,Suiteincludes a method calledexpectthat * can be used as an alternative toassertwith===. To useexpect, you place * the expected value in parentheses afterexpect, followed by curly braces containing code * that should result in the expected value. For example: * ** val a = 5 * val b = 2 * expect(2) { * a - b * } ** ** In this case, the expected value is
* *2, and the code being tested isa - b. This expectation will fail, and * the detail message in theTestFailedExceptionwill read, "Expected 2, but got 3." *Intercepted exceptions
* ** Sometimes you need to test whether a method throws an expected exception under certain circumstances, such * as when invalid arguments are passed to the method. You can do this in the JUnit 3 style, like this: *
* ** val s = "hi" * try { * s.charAt(-1) * fail() * } * catch { * case _: IndexOutOfBoundsException => // Expected, so continue * } ** ** If
* *charAtthrowsIndexOutOfBoundsExceptionas expected, control will transfer * to the catch case, which does nothing. If, however,charAtfails to throw an exception, * the next statement,fail(), will be run. Thefailmethod always completes abruptly with * aTestFailedException, thereby signaling a failed test. ** To make this common use case easier to express and read, ScalaTest provides an
* *intercept* method. You use it like this: ** val s = "hi" * intercept[IndexOutOfBoundsException] { * s.charAt(-1) * } ** ** This code behaves much like the previous example. If
* *charAtthrows an instance ofIndexOutOfBoundsException, *interceptwill return that exception. But ifcharAtcompletes normally, or throws a different * exception,interceptwill complete abruptly with aTestFailedException.interceptreturns the * caught exception so that you can inspect it further if you wish, for example, to ensure that data contained inside * the exception has the expected values. *Getting a clue
* ** If you want more information that is provided by default by the methods if this trait, * you can supply a "clue" string in one of several ways. * The extra information (or "clues") you provide will * be included in the detail message of the thrown exception. Both *
* *assertandexpectprovide a way for a clue to be * included directly,interceptdoes not. * Here's an example of clues provided directly inassert: ** assert(1 + 1 === 3, "this is a clue") ** ** and in
* *expect: ** expect(3, "this is a clue") { 1 + 1 } ** ** The exceptions thrown by the previous two statements will include the clue * string,
* *"this is a clue", in the exception's detail message. * To get the same clue in the detail message of an exception thrown * by a failedinterceptcall requires usingwithClue: ** withClue("this is a clue") { * intercept[IndexOutOfBoundsException] { * "hi".charAt(-1) * } * } ** * ThewithCluemethod will only prepend the clue string to the detail * message of exception types that mix in theModifiableMessagetrait. * See the documentation forModifiableMessagefor more information. * * @author Bill Venners */ trait Assertions { /** * Class used via an implicit conversion to enable any two objects to be compared with *===in assertions in tests. For example: * ** assert(a === b) ** ** The benefit of using
* *assert(a === b)rather thanassert(a == b)is * that aTestFailedExceptionproduced by the former will include the values ofaandb* in its detail message. * The implicit method that performs the conversion fromAnytoEqualizeris *convertToEqualizerin traitAssertions. ** In case you're not familiar with how implicit conversions work in Scala, here's a quick explanation. * The
* *convertToEqualizermethod inAssertionsis defined as an "implicit" method that takes an *Any, which means you can pass in any object, and it will convert it to anEqualizer. * TheEqualizerhas===defined. Most objects don't have===defined as a method * on them. Take two Strings, for example: ** assert("hello" === "world") ** ** Given this code, the Scala compiler looks for an
* *===method on classString, because that's the class of *"hello".Stringdoesn't define===, so the compiler looks for an implicit conversion from *Stringto something that does have an===method, and it finds theconvertToEqualizermethod. It * then rewrites the code to this: ** assert(convertToEqualizer("hello").===("world")) ** ** So inside a
* *Suite(which mixes inAssertions,===will work on anything. The only * situation in which the implicit conversion wouldn't * happen is on types that have an===method already defined. ** The primary constructor takes one object,
* * @param left An object to convert toleft, whose type is being converted toEqualizer. Theleft* value may be anullreference, because this is allowed by Scala's==operator. *Equalizer, which represents theleftvalue * of an assertion. * * @author Bill Venners */ final class Equalizer(left: Any) { /** * The===operation compares thisEqualizer'sleftvalue (passed * to the constructor, usually via an implicit conversion) with the passedrightvalue * for equality as determined by the expressionleft == right. * Iftrue,===returnsNone. Else,===returns * aSomewhoseStringvalue indicates theleftandrightvalues. * ** In its typical usage, the
*/ def ===(right: Any) = if (areEqualComparingArraysStructurally(left, right)) None else { val (leftee, rightee) = Suite.getObjectsForFailureMessage(left, right) Some(FailureMessages("didNotEqual", leftee, rightee)) } /* def !==(right: Any) = if (left != right) None else { val (leftee, rightee) = Suite.getObjectsForFailureMessage(left, right) Some(FailureMessages("equaled", leftee, rightee)) } */ } /** * Assert that a boolean condition is true. * If the condition isOption[String]returned by===will be passed to one of two * of traitAssertion' overloadedassertmethods. IfNone, * which indicates the assertion succeeded,assertwill return normally. But ifSomeis passed, * which indicates the assertion failed,assertwill throw aTestFailedExceptionwhose detail * message will include theStringcontained inside theSome, which in turn includes the *leftandrightvalues. ThisTestFailedExceptionis typically embedded in a *Reportand passed to aReporter, which can present theleftandright* values to the user. *true, this method returns normally. * Else, it throwsTestFailedException. * * @param condition the boolean condition to assert * @throws TestFailedException if the condition isfalse. */ def assert(condition: Boolean) { if (!condition) throw newAssertionFailedException(None, None, 4) } private[scalatest] def newAssertionFailedException(optionalMessage: Option[Any], optionalCause: Option[Throwable], stackDepth: Int): Throwable = (optionalMessage, optionalCause) match { case (None, None) => new TestFailedException(stackDepth) case (None, Some(cause)) => new TestFailedException(cause, stackDepth) case (Some(message), None) => new TestFailedException(message.toString, stackDepth) case (Some(message), Some(cause)) => new TestFailedException(message.toString, cause, stackDepth) } /** * Assert that a boolean condition, described inString*message, is true. * If the condition istrue, this method returns normally. * Else, it throwsTestFailedExceptionwith the *Stringobtained by invokingtoStringon the * specifiedmessageas the exception's detail message. * * @param condition the boolean condition to assert * @param clue An objects whosetoStringmethod returns a message to include in a failure report. * @throws TestFailedException if the condition isfalse. * @throws NullPointerException ifmessageisnull. */ def assert(condition: Boolean, clue: Any) { if (!condition) throw newAssertionFailedException(Some(clue), None, 4) } /** * Assert that anOption[String]isNone. * If the condition isNone, this method returns normally. * Else, it throwsTestFailedExceptionwith theString* value of theSome, as well as the *Stringobtained by invokingtoStringon the * specifiedmessage, * included in theTestFailedException's detail message. * ** This form of
* *assertis usually called in conjunction with an * implicit conversion toEqualizer, using a===comparison, as in: ** assert(a === b, "extra info reported if assertion fails") ** ** For more information on how this mechanism works, see the documentation for *
* * @param o theEqualizer. *Option[String]to assert * @param clue An objects whosetoStringmethod returns a message to include in a failure report. * @throws TestFailedException if theOption[String]isSome. * @throws NullPointerException ifmessageisnull. */ def assert(o: Option[String], clue: Any) { o match { case Some(s) => throw newAssertionFailedException(Some(clue + "\n" + s), None, 4) case None => } } /** * Assert that anOption[String]isNone. * If the condition isNone, this method returns normally. * Else, it throwsTestFailedExceptionwith theString* value of theSomeincluded in theTestFailedException's * detail message. * ** This form of
* *assertis usually called in conjunction with an * implicit conversion toEqualizer, using a===comparison, as in: ** assert(a === b) ** ** For more information on how this mechanism works, see the documentation for *
* * @param o theEqualizer. *Option[String]to assert * @throws TestFailedException if theOption[String]isSome. */ def assert(o: Option[String]) { o match { case Some(s) => throw newAssertionFailedException(Some(s), None, 4) case None => } } /** * Implicit conversion fromAnytoEqualizer, used to enable * assertions with===comparisons. * ** For more information * on this mechanism, see the documentation for
* Because trait
* *Suitemixes inAssertions, this implicit conversion will always be * available by default in ScalaTestSuites. This is the only implicit conversion that is in scope by default in every * ScalaTestSuite. Other implicit conversions offered by ScalaTest, such as those that support the matchers DSL * orinvokePrivate, must be explicitly invited into your test code, either by mixing in a trait or importing the * members of its companion object. The reason ScalaTest requires you to invite in implicit conversions (with the exception of the * implicit conversion for===operator) is because if one of ScalaTest's implicit conversions clashes with an * implicit conversion used in the code you are trying to test, your program won't compile. Thus there is a chance that if you * are ever trying to use a library or test some code that also offers an implicit conversion involving a===operator, * you could run into the problem of a compiler error due to an ambiguous implicit conversion. If that happens, you can turn off * the implicit conversion offered by thisconvertToEqualizermethod simply by overriding the method in your *Suitesubclass, but not marking it as implicit: ** // In your Suite subclass * override def convertToEqualizer(left: Any) = new Equalizer(left) ** * @param left the object whose type to convert toEqualizer. * @throws NullPointerException ifleftisnull. */ implicit def convertToEqualizer(left: Any) = new Equalizer(left) /* * Intercept and return an instance of the passed exception class (or an instance of a subclass of the * passed class), which is expected to be thrown by the passed function value. This method invokes the passed * function. If it throws an exception that's an instance of the passed class or one of its * subclasses, this method returns that exception. Else, whether the passed function returns normally * or completes abruptly with a different exception, this method throwsTestFailedException* whose detail message includes theStringobtained by invokingtoStringon the passedmessage. * ** Note that the passed
* * @param message An object whoseClassmay represent any type, not justThrowableor one of its subclasses. In * Scala, exceptions can be caught based on traits they implement, so it may at times make sense to pass in a class instance for * a trait. If a class instance is passed for a type that could not possibly be used to catch an exception (such asString, * for example), this method will complete abruptly with aTestFailedException. *toStringmethod returns a message to include in a failure report. * @param f the function value that should throw the expected exception * @return the intercepted exception, if it is of the expected type * @throws TestFailedException if the passed function does not result in a value equal to the * passedexpectedvalue. def intercept[T <: AnyRef](message: Any)(f: => Any)(implicit manifest: Manifest[T]): T = { val clazz = manifest.erasure.asInstanceOf[Class[T]] val messagePrefix = if (message.toString.trim.isEmpty) "" else (message +"\n") val caught = try { f None } catch { case u: Throwable => { if (!clazz.isAssignableFrom(u.getClass)) { val s = Resources("wrongException", clazz.getName, u.getClass.getName) throw newAssertionFailedException(Some(messagePrefix + s), Some(u), 4) } else { Some(u) } } } caught match { case None => val message = messagePrefix + Resources("exceptionExpected", clazz.getName) throw newAssertionFailedException(Some(message), None, 4) case Some(e) => e.asInstanceOf[T] // I know this cast will succeed, becuase iSAssignableFrom succeeded above } } THIS DOESN'T OVERLOAD. I THINK I'LL EITHER NEED TO USE interceptWithMessage OR JUST LEAVE IT OUT. FOR NOW I'LL LEAVE IT OUT. */ /** * Intercept and return an exception that's expected to * be thrown by the passed function value. The thrown exception must be an instance of the * type specified by the type parameter of this method. This method invokes the passed * function. If the function throws an exception that's an instance of the specified type, * this method returns that exception. Else, whether the passed function returns normally * or completes abruptly with a different exception, this method throwsTestFailedException. * ** Note that the type specified as this method's type parameter may represent any subtype of *
* * @param f the function value that should throw the expected exception * @param manifest an implicitAnyRef, not justThrowableor one of its subclasses. In * Scala, exceptions can be caught based on traits they implement, so it may at times make sense * to specify a trait that the intercepted exception's class must mix in. If a class instance is * passed for a type that could not possibly be used to catch an exception (such asString, * for example), this method will complete abruptly with aTestFailedException. *Manifestrepresenting the type of the specified * type parameter. * @return the intercepted exception, if it is of the expected type * @throws TestFailedException if the passed function does not complete abruptly with an exception * that's an instance of the specified type * passedexpectedvalue. */ def intercept[T <: AnyRef](f: => Any)(implicit manifest: Manifest[T]): T = { val clazz = manifest.erasure.asInstanceOf[Class[T]] val caught = try { f None } catch { case u: Throwable => { if (!clazz.isAssignableFrom(u.getClass)) { val s = Resources("wrongException", clazz.getName, u.getClass.getName) throw newAssertionFailedException(Some(s), Some(u), 4) } else { Some(u) } } } caught match { case None => val message = Resources("exceptionExpected", clazz.getName) throw newAssertionFailedException(Some(message), None, 4) case Some(e) => e.asInstanceOf[T] // I know this cast will succeed, becuase iSAssignableFrom succeeded above } } /* * Intercept and return an instance of the passed exception class (or an instance of a subclass of the * passed class), which is expected to be thrown by the passed function value. This method invokes the passed * function. If it throws an exception that's an instance of the passed class or one of its * subclasses, this method returns that exception. Else, whether the passed function returns normally * or completes abruptly with a different exception, this method throwsTestFailedException. * ** Note that the passed
* * @param clazz a type to which the expected exception class is assignable, i.e., the exception should be an instance of the type represented byClassmay represent any type, not justThrowableor one of its subclasses. In * Scala, exceptions can be caught based on traits they implement, so it may at times make sense to pass in a class instance for * a trait. If a class instance is passed for a type that could not possibly be used to catch an exception (such asString, * for example), this method will complete abruptly with aTestFailedException. *clazz. * @param f the function value that should throw the expected exception * @return the intercepted exception, if * @throws TestFailedException if the passed function does not complete abruptly with an exception that is assignable to the * passedClass. * @throws IllegalArgumentException if the passedclazzis notThrowableor * one of its subclasses. */ /* def intercept[T <: AnyRef](clazz: java.lang.Class[T])(f: => Unit): T = { // intercept(clazz)(f)(manifest) "hi".asInstanceOf[T] } */ /* def intercept[T <: AnyRef](clazz: java.lang.Class[T])(f: => Unit)(implicit manifest: Manifest[T]): T = { intercept(clazz)(f)(manifest) } */ /** * Expect that the value passed asexpectedequals the value passed asactual. * If theactualequals theexpected* (as determined by==),expectreturns * normally. Else, ifactualis not equal toexpected,expectthrows an *TestFailedExceptionwhose detail message includes the expected and actual values, as well as theString* obtained by invokingtoStringon the passedmessage. * * @param expected the expected value * @param clue An object whosetoStringmethod returns a message to include in a failure report. * @param actual the actual value, which should equal the passedexpectedvalue * @throws TestFailedException if the passedactualvalue does not equal the passedexpectedvalue. */ def expect(expected: Any, clue: Any)(actual: Any) { if (actual != expected) { val (act, exp) = Suite.getObjectsForFailureMessage(actual, expected) val s = FailureMessages("expectedButGot", exp, act) throw newAssertionFailedException(Some(clue + "\n" + s), None, 4) } } /** * Expect that the value passed asexpectedequals the value passed asactual. * If theactualvalue equals theexpectedvalue * (as determined by==),expectreturns * normally. Else,expectthrows an *TestFailedExceptionwhose detail message includes the expected and actual values. * * @param expected the expected value * @param actual the actual value, which should equal the passedexpectedvalue * @throws TestFailedException if the passedactualvalue does not equal the passedexpectedvalue. */ def expect(expected: Any)(actual: Any) { if (actual != expected) { val (act, exp) = Suite.getObjectsForFailureMessage(actual, expected) val s = FailureMessages("expectedButGot", exp, act) throw newAssertionFailedException(Some(s), None, 4) } } /* * TODO: Delete this if sticking with Nothing instead of Unit as result type of fail. ** The result type of this and the other overloaded
* *failmethods is *Unitinstead ofNothing, becauseNothing* is a subtype of all other types. If the result type offailwere *Nothing, a block of code that ends in a call tofail()may * fail to compile if the block being passed as a by-name parameter or function to an * overloaded method. The reason is that the compiler selects which overloaded * method to call based on the static types of the parameters passed. Since *Nothingis an instance of everything, it can often make the overloaded * method selection ambiguous. ** For a concrete example, the
* *Conductorclass * in packageorg.scalatest.concurrenthas two overloaded variants of the *threadmethod: ** def thread[T](fun: => T): Thread * * def thread[T](name: String)(fun: => T): Thread ** ** Given these two overloaded methods, the following code will compile given the result type * of
* *failisUnit, but would not compile if the result type were *Nothing: ** thread { fail() } ** ** If the result type of
*/ /** * ThrowsfailwereNothing, the type of the by-name parameter * would be inferred to beNothing, which is a subtype of bothTand *String. Thus the call is ambiguous, because the type matches the first parameter type * of both overloadedthreadmethods.Unit, by constrast, is not * a subtype ofString, so it only matches one overloaded variant and compiles just fine. *TestFailedExceptionto indicate a test failed. */ def fail() = { throw newAssertionFailedException(None, None, 4) } /** * ThrowsTestFailedException, with the passed *Stringmessageas the exception's detail * message, to indicate a test failed. * * @param message A message describing the failure. * @throws NullPointerException ifmessageisnull*/ def fail(message: String) = { if (message == null) throw new NullPointerException("message is null") throw newAssertionFailedException(Some(message), None, 4) } /** * ThrowsTestFailedException, with the passed *Stringmessageas the exception's detail * message andThrowablecause, to indicate a test failed. * * @param message A message describing the failure. * @param cause AThrowablethat indicates the cause of the failure. * @throws NullPointerException ifmessageorcauseisnull*/ def fail(message: String, cause: Throwable) = { if (message == null) throw new NullPointerException("message is null") if (cause == null) throw new NullPointerException("cause is null") throw newAssertionFailedException(Some(message), Some(cause), 4) } /** * ThrowsTestFailedException, with the passed *Throwablecause, to indicate a test failed. * ThegetMessagemethod of the thrownTestFailedException* will returncause.toString(). * * @param cause aThrowablethat indicates the cause of the failure. * @throws NullPointerException ifcauseisnull*/ def fail(cause: Throwable) = { if (cause == null) throw new NullPointerException("cause is null") throw newAssertionFailedException(None, Some(cause), 4) } /** * Executes the block of code passed as the second parameter, and, if it * completes abruptly with aModifiableMessageexception, * prepends the "clue" string passed as the first parameter to the beginning of the detail message * of that thrown exception, then rethrows it. If clue does not end in a white space * character, one space will be added * between it and the existing detail message (unless the detail message is * not defined). * ** This method allows you to add more information about what went wrong that will be * reported when a test fails. Here's an example: *
* ** withClue("(Employee's name was: " + employee.name + ")") { * intercept[IllegalArgumentException] { * employee.getTask(-1) * } * } ** ** If an invocation of
* *interceptcompleted abruptly with an exception, the resulting message would be something like: ** (Employee's name was Bob Jones) Expected IllegalArgumentException to be thrown, but no exception was thrown ** * @throws NullPointerException if the passedclueisnull*/ def withClue[T](clue: Any)(fun: => T): T = { if (clue == null) throw new NullPointerException("clue was null") def prepend(currentMessage: Option[String]) = currentMessage match { case Some(msg) => if (clue.toString.last.isWhitespace) Some(clue.toString + msg) else Some(clue.toString + " " + msg) case None => Some(clue.toString) } try { fun } catch { case e: org.scalatest.exceptions.ModifiableMessage[_] => if (clue != "") throw e.modifyMessage(prepend) else throw e } } /* Hold off on this for now. See how people do with the simple one that takes an Any. def withClueFunction(sfun: Option[String] => Option[String])(fun: => Unit) { fun } */ } /** * Companion object that facilitates the importing ofAssertionsmembers as * an alternative to mixing it in. One use case is to importAssertionsmembers so you can use * them in the Scala interpreter: * ** $scala -classpath scalatest.jar * Welcome to Scala version 2.7.3.final (Java HotSpot(TM) Client VM, Java 1.5.0_16). * Type in expressions to have them evaluated. * Type :help for more information. * * scala> import org.scalatest.Assertions._ * import org.scalatest.Assertions._ * * scala> assert(1 === 2) * org.scalatest.TestFailedException: 1 did not equal 2 * at org.scalatest.Assertions$class.assert(Assertions.scala:211) * at org.scalatest.Assertions$.assert(Assertions.scala:511) * at .* * @author Bill Venners */ object Assertions extends Assertions { private[scalatest] def areEqualComparingArraysStructurally(left: Any, right: Any) = { left match { case leftArray: Array[_] => right match { case rightArray: Array[_] => leftArray.deep.equals(rightArray.deep) case _ => left == right } case _ => left == right } } }( :7) * at . ( ) * at RequestResult$. ( :3) * at RequestResult$. ( ) * at RequestResult$result( ) * at sun.reflect.NativeMethodAccessorImpl.invoke... * * scala> expect(3) { 1 + 3 } * org.scalatest.TestFailedException: Expected 3, but got 4 * at org.scalatest.Assertions$class.expect(Assertions.scala:447) * at org.scalatest.Assertions$.expect(Assertions.scala:511) * at . ( :7) * at . ( ) * at RequestResult$. ( :3) * at RequestResult$. ( ) * at RequestResult$result( ) * at sun.reflect.NativeMethodAccessorImpl.in... * * scala> val caught = intercept[StringIndexOutOfBoundsException] { "hi".charAt(-1) } * caught: StringIndexOutOfBoundsException = java.lang.StringIndexOutOfBoundsException: String index out of range: -1 *