-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdjustCaseTest.java
More file actions
31 lines (29 loc) · 1.09 KB
/
Copy pathAdjustCaseTest.java
File metadata and controls
31 lines (29 loc) · 1.09 KB
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
import org.junit.jupiter.api.Tag;
import java.util.*;
import java.util.stream.*;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.params.provider.MethodSource;
import org.junit.jupiter.params.provider.ValueSource;
import net.jqwik.api.Property;
import net.jqwik.api.ForAll;
import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.params.provider.Arguments.arguments;
import static other.AdjustCase.*;
@Tag("smoke")
public class AdjustCaseTest {
@Test
void adjustsSuffixWithoutRetainingExpandedLowercaseCharacters() {
other.AdjustCase adjustCase = new other.AdjustCase();
assertEquals("\u0130bc", adjustCase.adjustCaseToLower("\u0130BC"));
}
@Test
void smokeTestsShouldExecuteApi() {
quality.SmokeMethodTestHarness.verify(other.AdjustCase.class);
}
}