Maven Minx Work Apr 2026

import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows;

public double divide(double a, double b) { if (b == 0) { throw new ArithmeticException("Cannot divide by zero"); } return a / b; } } Modify App.java to use the Calculator class: maven minx work

package com.example;

package com.example;