Table of Contents
ToggleUnit Test Map with AssertJ
通常與 JUnit 測試一起使用,提供了一組豐富的斷言和真正有用的錯誤訊息,Unit Test Java AssertJ Map 介紹了一些常見方法,如: isNot 、 isNotIn 、 isInstanceOf 、 isNotInstanceOf 等方法,本篇增加了範例,並透過單元測試來驗證產出結果。
檔案目錄
./
+- src
+- test
| +- org
| +- ruoxue
| +- spring_boot_168
| +- test
| +- assertj
| +- map
| +- UnitTestMapWithAssertJTest.java
單元測試
Java AssertJ Map Unit Test 斷言集合的主要目的是取得集合的正確元素以進行斷言。
is
驗證是否符合條件,若不成立,則會拋出 AssertionError 。
@Test
public void is() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
Condition<Map<?, ?>> size = new Condition<Map<?, ?>>(s -> s.size() > 2, "size");
assertThat(map).is(size);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
Condition<Map<?, ?>> intSize = new Condition<Map<?, ?>>(i -> i.size() > 2, "size");
assertThat(intMap).is(intSize);
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
isNot
Java AssertJ Map Unit Test 驗證是否不符合條件,若不成立,則會拋出 AssertionError 。
@Test
public void isNot() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
Condition<Map<?, ?>> size = new Condition<Map<?, ?>>(s -> s.size() > 3, "size");
assertThat(map).isNot(size);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
Condition<Map<?, ?>> intSize = new Condition<Map<?, ?>>(i -> i.size() > 3, "size");
assertThat(intMap).isNot(intSize);
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
isIn
Java AssertJ Map Unit Test 驗證是否包含於集合中,若不成立,則會拋出 AssertionError 。
@Test
public void isIn() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat("Kiwifruit").isIn(map.keySet());
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(2).isIn(intMap.keySet());
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
isNotIn
Java AssertJ Map Unit Test 驗證是否不包含於集合中,若不成立,則會拋出 AssertionError 。
@Test
public void isNotIn() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat("Papaya").isNotIn(map.keySet());
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(99).isNotIn(intMap.keySet());
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
isInstanceOf
Java AssertJ Map Unit Test 驗證是否為指定類別實例,若不成立,則會拋出 AssertionError 。
@Test
public void isInstanceOf() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat(map).isInstanceOf(Map.class);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(intMap).isInstanceOf(Map.class);
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
isNotInstanceOf
Java AssertJ Map Unit Test 驗證是否不為指定類別實例,若不成立,則會拋出 AssertionError 。
@Test
public void isNotInstanceOf() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat(map).isNotInstanceOf(String.class);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(intMap).isNotInstanceOf(Integer.class);
}
{Grape=18, Kiwifruit=19, Lemon=20}
{1=18, 2=19, 3=20}
UnitTestMapWithAssertJTest.java
Java Unit Test AssertJ Map 新增單元測試,驗證是否符合預期。
package org.ruoxue.spring_boot_168.test.assertj.map;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.HashMap;
import java.util.Map;
import org.assertj.core.api.Condition;
import org.junit.jupiter.api.Test;
public class UnitTestMapWithAssertJTest {
@Test
public void is() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
Condition<Map<?, ?>> size = new Condition<Map<?, ?>>(s -> s.size() > 2, "size");
assertThat(map).is(size);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
Condition<Map<?, ?>> intSize = new Condition<Map<?, ?>>(i -> i.size() > 2, "size");
assertThat(intMap).is(intSize);
}
@Test
public void isNot() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
Condition<Map<?, ?>> size = new Condition<Map<?, ?>>(s -> s.size() > 3, "size");
assertThat(map).isNot(size);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
Condition<Map<?, ?>> intSize = new Condition<Map<?, ?>>(i -> i.size() > 3, "size");
assertThat(intMap).isNot(intSize);
}
@Test
public void isIn() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat("Kiwifruit").isIn(map.keySet());
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(2).isIn(intMap.keySet());
}
@Test
public void isNotIn() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat("Papaya").isNotIn(map.keySet());
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(99).isNotIn(intMap.keySet());
}
@Test
public void isInstanceOf() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat(map).isInstanceOf(Map.class);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(intMap).isInstanceOf(Map.class);
}
@Test
public void isNotInstanceOf() {
Map<String, Integer> map = new HashMap<>();
map.put("Grape", 18);
map.put("Kiwifruit", 19);
map.put("Lemon", 20);
System.out.println(map);
assertThat(map).isNotInstanceOf(String.class);
Map<Integer, Integer> intMap = new HashMap<>();
intMap.put(1, 18);
intMap.put(2, 19);
intMap.put(3, 20);
System.out.println(intMap);
assertThat(intMap).isNotInstanceOf(Integer.class);
}
}
心得分享
AssertJ Map Java Unit Test 斷言的基本方法是 assertThat 方法,為用 Java 編寫的測試程式提供了流暢的斷言語句,善用 Java Unit Test AssertJ Map 將有助於驗證效率的提升。