1
2
3
4
5 package com.qulice.pmd;
6
7 import org.hamcrest.Matchers;
8 import org.junit.jupiter.api.Test;
9
10
11
12
13
14
15
16
17 final class PmdArrayIsStoredDirectlyTest {
18
19 @Test
20 void allowsArrayIsStoredDirectlyWhenWrapped() throws Exception {
21 new PmdAssert(
22 "ArrayIsStoredDirectlyWrapped.java",
23 Matchers.any(Boolean.class),
24 Matchers.not(
25 Matchers.containsString("(ArrayIsStoredDirectly)")
26 )
27 ).assertOk();
28 }
29
30 @Test
31 void reportsArrayIsStoredDirectlyWhenPlain() throws Exception {
32 new PmdAssert(
33 "ArrayIsStoredDirectlyPlain.java",
34 Matchers.is(false),
35 Matchers.containsString("(ArrayIsStoredDirectly)")
36 ).assertOk();
37 }
38 }