-
On the same idea than #10 (https://github.com/joel-costigliola/assertj-db/issues/10),
write suggestions of assertions based on DBUnit assertions to help a migration
-
Hello,
I just find too restrictive the way to combine assertion or may be I missed something, for exemple I would like to write:
ObjectA isEqualToComparingFieldByFieldRecursively To ObjectB or To Ob…
-
The `@Spy` annotated fields initalized by `closable = MockitoAnnotations.openMocks(this)` is not cleared by `closable.close()`
ex:
```java
package example.package;
import static org.assertj.co…
-
# AssertJ의 다양한 메소드 활용해보기.
Junit에서 기본으로 제공하는 assertions 보다 AssertJ는 보다 많은 기능을 제공한다. 하지만 일반적으로 테스트할 때 항상 비슷한 형태로만 테스트하기 때문에 이번 포스팅에서는 AssertJ…
[https://tecoble.techcourse.co.kr/post/2020-11-03-assertJ…
-
The following valid Java code fails to compile in Xtend:
```
org.assertj.core.api.Assertions.assertThat(myEntity).isNotNull();
```
Whereas `MyType` refers to a type generated by EMF.
With the f…
-
Adding extensions for Android will allow some often-used assertions to be shorter and more idiomatic. For example, we could have:
```kotlin
expect(view).isGone()
```
instead of
```kotlin
e…
-
Expand java-power-assert to support [AssertJ](http://joel-costigliola.github.io/assertj/) assertions.
-
Spring Boot ships `JacksonTester` (see Boot's [reference docs](https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-testing-spring-boot-applications-t…
-
Hello,
I have the following configs
```
assertjGen {
classOrPackageNames = ['com.mycompany.api.jsonModels']
outputDir = 'src/main/java/com/mycompany/api/asserts'
assertjGenerator =…
-
This is potentially a little vague in its broadness, but here goes.
Say we have a value class like e.g.
```java
@Value
class AccountNumber {
String rawValue;
}
```
If another class (…