JUnit's Assertions.assertThrows first argument?

Assertions.assertThrows(RuntimeException.class, () -> {
contactManager.addContact(null, "Doe", "0123456789");
});
Assertions.assertThrows(RuntimeException.class, () -> {
contactManager.addContact(null, "Doe", "0123456789");
});
Hi, I am trying to understand the first argument Assertions.assertThrows takes. I know it has to be the expected exception that will be thrown, and in this case we expect it to be RuntimeException. I am confused as to what the .class means? I know what a class is but never seen it used with a dot after some object.
32 Replies
JavaBot
JavaBot12mo ago
This post has been reserved for your question.
Hey @Steadhaven! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
dan1st
dan1st12mo ago
If you write .class, you get a Class object containing information about the class
class SomeClass{}
class SomeClass{}
Class<SomeClass> cl = SomeClass.class;
System.out.println(Arrays.toString(cl.getMethods()));
Class<SomeClass> cl = SomeClass.class;
System.out.println(Arrays.toString(cl.getMethods()));
Steadhaven
SteadhavenOP12mo ago
It is the type then? e.g. RuntimeException.class returns the type RuntimeException instead of the object itself?
dan1st
dan1st12mo ago
If you have an object of a class, you can also get the Class<> object of that class using yourObject.getClass() it is an object with information about the type
Steadhaven
SteadhavenOP12mo ago
ah hm so its not quite the type, but info about the type and assertThrows can use that
dan1st
dan1st12mo ago
yes
Steadhaven
SteadhavenOP12mo ago
Is there a way to see an easy example of what .class might contain? perhaps its possible to call it on String or Integer
dan1st
dan1st12mo ago
you can use it to access metadata, get its methods/constructors, etc you can do things like that
dan1st
dan1st12mo ago
Class (Java SE 21 & JDK 21)
declaration: module: java.base, package: java.lang, class: Class
Steadhaven
SteadhavenOP12mo ago
import java.util.Arrays;

public class MyClass {
public static void main(String args[]) {
Class<MyClass> cl = MyClass.class;
System.out.println(Arrays.toString(cl.getMethods()));
}
}
import java.util.Arrays;

public class MyClass {
public static void main(String args[]) {
Class<MyClass> cl = MyClass.class;
System.out.println(Arrays.toString(cl.getMethods()));
}
}
dan1st
dan1st12mo ago
yes
Steadhaven
SteadhavenOP12mo ago
[public static void MyClass.main(java.lang.String[]), public boolean java.lang.Object.equals(java.lang.Object), public java.lang.String java.lang.Object.toString(), public native int java.lang.Object.hashCode(), public final native java.lang.Class java.lang.Object.getClass(), public final native void java.lang.Object.notify(), public final native void java.lang.Object.notifyAll(), public final void java.lang.Object.wait(long) throws java.lang.InterruptedException, public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException, public final void java.lang.Object.wait() throws java.lang.InterruptedException]
[public static void MyClass.main(java.lang.String[]), public boolean java.lang.Object.equals(java.lang.Object), public java.lang.String java.lang.Object.toString(), public native int java.lang.Object.hashCode(), public final native java.lang.Class java.lang.Object.getClass(), public final native void java.lang.Object.notify(), public final native void java.lang.Object.notifyAll(), public final void java.lang.Object.wait(long) throws java.lang.InterruptedException, public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException, public final void java.lang.Object.wait() throws java.lang.InterruptedException]
result wow wtf
dan1st
dan1st12mo ago
yes There are some methods coming from Object if you just want the declared methods, you can use cl.getDeclaredMethods() you can also access fields and other stuff
Steadhaven
SteadhavenOP12mo ago
besides using .class for assertThrows (it expected the Class<T> expectedType as an argument), will I run into .class and Class<T> elsewhere?
No description
Steadhaven
SteadhavenOP12mo ago
So its a long winded way to get access to the fields of a class or the methods like saying cl.getDeclaredMethods() instead of directly using the methods on the class itself
dan1st
dan1st12mo ago
from time to time Well it's made for code that doesn't know (at compile-time) what class it is used for and the Class<> object contains that information at runtime
Steadhaven
SteadhavenOP12mo ago
import java.util.Arrays;

public class MyClass {
public static void main(String args[]) {
Class<MyClass> cl = MyClass.class;
System.out.println(Arrays.toString(cl.getDeclaredMethods()));
}
}
import java.util.Arrays;

public class MyClass {
public static void main(String args[]) {
Class<MyClass> cl = MyClass.class;
System.out.println(Arrays.toString(cl.getDeclaredMethods()));
}
}
Gives me:

[public static void MyClass.main(java.lang.String[])]

[public static void MyClass.main(java.lang.String[])]
So it seems that this method returns only the top level, whereas the former is recursively going deeper in the nesting and looks at Main as well
dan1st
dan1st12mo ago
you mena it looks at Object? getMethods also includes inherited methods
Steadhaven
SteadhavenOP12mo ago
Yes so declaredmethods is looking at the first level but getmethods goes deeper looking at inhereted stuff too
dan1st
dan1st12mo ago
yes, it gives you all methods inherited from any level
Steadhaven
SteadhavenOP12mo ago
ok
dan1st
dan1st12mo ago
but there are more methods than that
Steadhaven
SteadhavenOP12mo ago
this is hard to understand, but perhaps the topic to learn about is "reflections"? I can't find further info other than the Java doc about Class Class<T> no videos/articles about Class Class<T> itself
dan1st
dan1st12mo ago
Yes, it is reflection
Steadhaven
SteadhavenOP12mo ago
at least what I can see
dan1st
dan1st12mo ago
But it isn't that much of an important topic when you are a beginner
Steadhaven
SteadhavenOP12mo ago
apparently its important in testing
dan1st
dan1st12mo ago
You can just use SomeClass.class and that gives you an object representing the class/type and you can pass that object to assertThrows or other things
Steadhaven
SteadhavenOP12mo ago
Thanks
JavaBot
JavaBot12mo ago
If you are finished with your post, please close it. If you are not, please ignore this message. Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
JavaBot
JavaBot12mo ago
Post Closed
This post has been closed by <@305362010374406144>.
dan1st
dan1st12mo ago
if you want to learn about reflection https://dev.java/learn/introduction_to_java_reflection/
Dev.java: The Destination for Java Developers
Introduction to Java Reflection - Dev.java
Java reflection allows an object to look in the mirror and discover what fields, methods, and constructors it has. We can read and write fields, invoke methods, and even create new objects by calling the constructors.

Did you find this page helpful?