-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/tck projection #34
base: master
Are you sure you want to change the base?
Conversation
44f89aa
to
da91a59
Compare
.filter(e -> { | ||
return Option.of(query.entityId).map(id -> id.equals(e.entityId)).getOrElse(true); | ||
}); | ||
.filter(e -> Option.of(query.entityId).map(id -> id.equals(e.entityId)).getOrElse(true)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this modification is unecessary for this feature. Could you remove it to clarify ?
@@ -0,0 +1,26 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This schema is not used by TCK, therefore this file should be useless
|
||
|
||
@Override | ||
public void required_eventShouldBeConsumedByConsistentProjectionWhenEverythingIsAlright() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is @test annotation missing on this method and the one below ?
"org.testng" % "testng" % "6.3", | ||
"com.typesafe.akka" %% "akka-stream" % akkaVersion % Test, | ||
"org.mockito" % "mockito-core" % "3.6.28" % Test, | ||
"fr.maif" %% "jooq-async-api" % jooqAsyncVersion |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this import needed ?
Tests were not working since connection timeout was not setup on Postgres connection. Default timeout is infinite therefore test that shutdown BDD hangs.
3b478dc
to
635c19c
Compare
Fix #8 |
No description provided.