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

iOS

Fumiya Nakamura
seal-mask
.a{fill-rule:evenodd;}techdegree
Fumiya Nakamura
Front End Web Development Techdegree Student 5,295 Points

Question on algorism

Recently I read this blog post. How to Develop an iPad Board Game App

I'd like to test 'moveSurroundsCountersForColumn' function, and the question is how I should test this code.

I could test the specific situation like this,

-(void)test_moveSurroundsCountersForColumn {
    // no surroundings
    for (int i = 0; i < 8; i++) {
        BOOL canMoveSurrounds = [board moveSurroundsCountersForColumn:0 andRow:0 withNavigationFunction:_boardNavigationFunction[i] toState:BoardCellStateBlackPiece];
        STAssertEquals(canMoveSurrounds, NO, @"Cannot move");
    }
}

but I don't know how I can test every possible situation, and prove that is true.

Does anyone know good resources to solve the problem like this? Any suggestions?

2 Answers

Amit Bijlani
STAFF
Amit Bijlani
Treehouse Guest Teacher

@Furniya you might be better off asking this question in the comments section of that blog post. So that you can get a reply from the author himself.