// an error that you need
// to correct.
test "sub" {
- try testing.expect(sub(10, 5) == 6);
+ try testing.expect(sub(10, 5) == 5);
try testing.expect(sub(3, 1.5) == 1.5);
}
// Now we test if the function returns an error
// if we pass a zero as denominator.
// But which error needs to be tested?
- try testing.expectError(error.???, divide(15, 0));
+ try testing.expectError(error.DivisionByZero, divide(15, 0));
}