Replies: 4 comments 1 reply
-
Not sure if it is still related to #14044 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Add a simple test, @QuarkusTest
//@QuarkusTestResource(H2DatabaseTestResource.class)
public class PostRepositoryTest {
@Inject
PostRepository postRepository;
@Test
public void testSave() {
var assertSubscriber = postRepository.save(Post.of("test", "test"))
.invoke(p -> assertThat(p.id).isNotNull())
.subscribe().withSubscriber(UniAssertSubscriber.create());
assertSubscriber.assertCompleted();
}
} Got the same exceptions. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
cc @DavideD |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I try to update my Quarkus example to the latest 3.2.0.Final, but when running
./mvnw Quarkus:dev
, I got the following exception:The DataIntializer is a bean to insert some sample at startup.
Beta Was this translation helpful? Give feedback.
All reactions