BaşlayınÜcretsiz Başlayın

ParameterizedTest: List sum

In this exercise, you will practice providing objects as arguments for parameterized tests. Consider the sumList method and the test cases for it.

Complete the parameterized test and the arguments method.

Bu egzersiz

Introduction to Testing in Java

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Use the correct annotation for a method source and provide the method name.
  • Declare the arguments provider method, making sure it has the correct keywords and return type.
  • For the final Arguments object, use null and its expected sum.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

public class SumOfList {
    public static void main(String[] args) {
		launchTestsAndPrint(ListSumTest.class);
    }
}

class ListSumTest {
    @ParameterizedTest
    // Invoke the correct annotation for a method source
    @____("____") 
    void sumList_sumsList(List list, int expectedSum) {
        int actualSum = ListSum.sumList(list);

        assertEquals(expectedSum, actualSum);
    }

	// Declare the correct method signature
    ____ ____ List listsAndSums() {
        return List.of(
                Arguments.of(List.of(1, 2, 3, 4), 10),
                Arguments.of(List.of(-5, 5), 0),
                Arguments.of(List.of(), 0),
                // Create a null list and the expected sum in that case
                Arguments.of(null, ____)); 
    }
}
Kodu Düzenle ve Çalıştır