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 How to Test JUnit basics

Statically importing methods makes them available in the namespace. Please fill in the blank for the missing keyword tha

Statically importing methods makes them available in the namespace. Please fill in the blank for the missing keyword that will allow me to statically import the static method fail off the Assert class:

import org.junit.Assert.fail;

// Note how I can use it in the namespace without needing to prefix it like Assert.fail() fail();

1 Answer

Roland Kalmogo
Roland Kalmogo
25,657 Points

Hello,

just put static in the placeholder.

Static imports let you use static methods without having to prefix them with the class name.