Hamcrest

Posted by Adam on August 24, 2022
Hamcrest 是一個用於撰寫可讀性高、易於理解的斷言(assertions)的框架,主要用於單元測試中。 Hamcrest 的主要目標是提供一組豐富的匹配器(matchers),以便於進行物件的比較和驗證。匹配器可用於撰寫各種斷言,例如檢查物件是否符合特定條件、比較值是否相等、驗證集合中是否存在特定元素等等。 Hamcrest 提供了一個直觀的語法,使測試代碼易於閱讀和維護。它使用了一些內建的匹配器,例如 equalTo、greaterThan、lessThan 等,同時也支援自定義的匹配器。 ```xml <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-all --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> ``` ```java import org.hamcrest.MatcherAssert; import org.hamcrest.Matchers; import org.junit.Test; public class CalculatorTest { @Test public void testAddition() { Calculator calculator = new Calculator(); int result = calculator.add(2, 3); MatcherAssert.assertThat(result, Matchers.equalTo(5)); // 檢查兩個值是否相等 MatcherAssert.assertThat(5, Matchers.equalTo(5)); // 檢查一個值是否大於另一個值 MatcherAssert.assertThat(10, Matchers.greaterThan(5)); // 檢查一個字串是否包含特定子字串 MatcherAssert.assertThat("Hello World", Matchers.containsString("Hello")); } } ```