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 trialShaun Wetzel
9,085 Pointsfail() not working as in video, junit 5 have a different way of doing it?
In the video Craig is using junit 4 and while testing test to see if they can fail he uses fail(); @6:00 mintues
however now Junit 5 is out and that's what I formatted to and fail() no longer works as intended i was wondering if there was a new way?
Jacob Kaltenbach
4,980 PointsSame. Switching back to junit 4 fixed it for me, but I was not able to figure out what to do with junit 5.
1 Answer
jim Galvan
2,013 PointsUsing "import static org.junit.jupiter.api.Assertions.*;" led te me use Fail()
Anthony Renwick
3,609 PointsAnthony Renwick
3,609 PointsI'm having the same problem as well.