Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Unit Testing in Java What to Test Exceptions

What does expected do in this video?

I did not understand what is the use and role of expected, why is it required?

Steve Hunter Steven Parker Craig Dennis

1 Answer

Steven Parker
Steven Parker
229,644 Points

:bell: Hi, I got alerted by your tag. But I haven't taken this course yet myself.

However, I'll offer a guess based on unit test packages I've used for other languages. The "expected" is usually the way you let the system know what the "right" answer should be, and when it runs the test it compares the result to that value to determine the pass/fail status of the test.