Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7663989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T14:11:20+00:00 2026-05-31T14:11:20+00:00

How can expectedException be declared so that only Exceptions and subclasses can be passed?

  • 0

How can expectedException be declared so that only Exceptions and subclasses can be passed? At present I am using expectedException: Any.

Details.

I have a test utility method that is invoked like this,

assertExceptionThrown("En-passant should be rejected when the previous move was not a double advance", classOf[UnreachablePositionException] ) {
  e.rejectIllegalMove(EnPassant("e5", "d6"))
}

The second argument of the first parameter list is classOf[SomeException]. This the signature of the test method,

  // TODO: Restrict expectedException to Exception or subclass
  def assertExceptionThrown(assertion: String, expectedException: Any)(b:  => Unit) {

My question is how can expectedException be declared so that only Exceptions and subclasses can be passed? At present I am using expectedException: Any.

The full source of the Test trait is here,
https://github.com/janekdb/stair-chess/blob/master/src/test/Test.scala

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T14:11:21+00:00Added an answer on May 31, 2026 at 2:11 pm

    Use generics:

    def assertExceptionThrown[T <: SomeException](assertion: String, expectedException: Class[T])(b:  => Unit)
    

    This says that the type T from expectedException must be SomeException or a subclass thereof.

    A demonstration:

    class A
    class B extends A
    def f[T <: A](x: Class[T]) {}   // f accepts Class[A] or a Class[subclass of A]
    
    f(classOf[A])   // fine
    f(classOf[B])   // fine
    f(classOf[Int]) // error: inferred type arguments [Int] do not conform to method f's type parameter bounds [T <: A]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Visual Studio Test can check for expected exceptions using the ExpectedException attribute. You can
I know that one can define an 'expected' exception in JUnit, doing: @Test(expect=MyException.class) public
Can a LINQ enabled app run on a machine that only has the .NET
In MbUnit one can do something like this: [Test] [TestCategory(Bad Arguments)] [TestCategory(Fast)] [ExpectedException(typeof(ArgumentNullException))] public
I have a set of tests, and I want to test that my classes
Can somebody point me to a resource that explains how to go about having
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
Say that I'm writing a test and my caret is here (indicated by |):
Is there a simple (Attribute-driven) way to have the following test fail on the
Can PHP PDO extension bind nested objects automatically ? I mean using foreign key

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.