aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/junitparams/internal/UtilsTest.java
blob: f5b9be19898baf12773e1deab29245f60c49df45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package junitparams.internal;

import static org.assertj.core.api.Assertions.assertThat;

import org.junit.Test;

public class UtilsTest {

    @Test
    public void shouldSafelyCastStringArrayParamSetToArray() {
        // given
        Object paramSet = new String[] {"this", "is", "a", "test"};

        // when
        Object[] result = Utils.safelyCastParamsToArray(paramSet);

        // then
        assertThat(result).containsExactly("this", "is", "a", "test");
    }

    @Test
    public void shouldSafelyCastIntegerArrayParamSetToArray() {
        // given
        Object paramSet = new Integer[] {1, 2, 3, 4};

        // when
        Object[] result = Utils.safelyCastParamsToArray(paramSet);

        // then
        assertThat(result).containsExactly(1, 2, 3, 4);
    }

    @Test
    public void shouldSafelyCastArrayParamSetToArray() {
        // given
        Object paramSet = new Object[] {1, "2", 30D};

        // when
        Object[] result = Utils.safelyCastParamsToArray(paramSet);

        // then
        assertThat(result).containsExactly(1, "2", 30D);
    }

    @Test
    public void shouldCreateSingletonArrayWhenCastingObjectToArray() {
        // given
        Object paramSet = "test";

        // when
        Object[] result = Utils.safelyCastParamsToArray(paramSet);

        // then
        assertThat(result).containsExactly("test");
    }
}