Ao executar a classe VectorsTest, o teste será reprovado ...
Próximas questões
Com base no mesmo assunto
Ano: 2015
Banca:
FCC
Órgão:
TRT - 9ª REGIÃO (PR)
Prova:
FCC - 2015 - TRT - 9ª REGIÃO (PR) - Analista Judiciário - Área Apoio Especializado - Tecnologia da Informação |
Q585294
Programação
Texto associado
Um Analista da área de TI construiu a classe Vectors e a classe de teste VectorsTest utilizando o JUnit.
package sample;
public final class Vectors {
private Vectors() {}
public static int scalarMultiplication(int[] a, int[] b) {
if ((a == null) || (b == null)) {
throw new llegalArgumentException("Argumento nulo");
}
if (a.length != b.length) {
throw new llegalArgumentException("Vetores com tuplas diferentes");
}
int sum = 0;
for (int i = 0; i < a.length; i++) {
sum += a[i] * b[i];
}
return sum;
}
}
package sample;
import junit.framework.TestCase;
public class VectorsTest extends TestCase {
public VectorsTest(String testName) {
super(testName);
}
public void testScalarMultiplication() {
I
}
}
package sample;
public final class Vectors {
private Vectors() {}
public static int scalarMultiplication(int[] a, int[] b) {
if ((a == null) || (b == null)) {
throw new llegalArgumentException("Argumento nulo");
}
if (a.length != b.length) {
throw new llegalArgumentException("Vetores com tuplas diferentes");
}
int sum = 0;
for (int i = 0; i < a.length; i++) {
sum += a[i] * b[i];
}
return sum;
}
}
package sample;
import junit.framework.TestCase;
public class VectorsTest extends TestCase {
public VectorsTest(String testName) {
super(testName);
}
public void testScalarMultiplication() {
I
}
}
Ao executar a classe VectorsTest, o teste será reprovado se a lacuna I estiver preenchida com a instrução