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

Compilation errors

Compilation completed with 2 errors and 0 warnings in 14 s 644 ms

Error:(53, 12) java: cannot find symbol symbol: method printChipmunksDeclaratively(java.util.List<java.lang.String>) location: class javafx.print.Printer

Error:(54, 12) java: cannot find symbol symbol: method printChipmunksDeclaratively(java.util.List<java.lang.String>) location: class javafx.print.Printer

@Test
  public void printsProperly() throws Exception {
    Printer.printChipmunksDeclaratively(Arrays.asList("Example1", "Example2"));
    Printer.printChipmunksDeclaratively(Arrays.asList("Example3"));
    consoler.addExpectedPrompt("Example1!");
    consoler.addExpectedPrompt("Example2!");
    consoler.addExpectedPrompt("Example3!");
    String msg = String.format("The output from your method '%s' seems wrong", METHOD_NAME);
    consoler.assertExpected(msg);
  }