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 The Happy Path and Beyond

Chance Edward
Chance Edward
4,507 Points

The Happy Path And Beyond (I need some help)

What did I do wrong and how do I fix it

package com.teamtreehouse.vending;

import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.*;

public class AlphaNumericChooser {


    private AlphaNumericChooser chooser;

    @Before
    public void setUp() throws Exception {
        chooser = new AlphaNumericChooser(26, 10);
    }

    @Test
    public void validInputReturnsProperLocation() throws Exception {
        fail();
        AlphaNumericChooser.Location loc = chooser.LocationFromInput("B4");

        assertEquals("proper row", 1, loc.getRow());
        assertEquals("proper colunm", 3, loc.getColumn());
    }

}