import static org.junit.Assert.*;
import org.junit.*;

public class TestingPracticeTest {
    @Test  // This must be before every test function
    public void testFindMax321() { // Notice: no static keyword
        // Inputs 
        int a = 3;
        int b = 2;
        int c = 1;

        // Expected output: generated manually
        int expected = 3;

        // Actual output: execute the code with the above input
        int actual = TestingPractice.findMax(a, b, c);

        // Assertion statement: 
        // If the two things below aren't equal, the test fails. 
        // Always put expected argument first!
        assertEquals(expected, actual);
    }
}