Consider the following JUnit 4 test code: @RunWith(Theories….

Consider the following JUnit 4 test code: @RunWith(Theories.class)public class TheoryTest {        @DataPoints    public static double[] nums = {1.0, 2.0, 3.0};        @Theory    public void squares(double num1, double num2) {     }} How many times is the @Theory (squares) method executed?