Skip to content

Commit ec49d0f

Browse files
committed
wip
1 parent f55c2d3 commit ec49d0f

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed
Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
package io.javaoperatorsdk.operator;
22

3+
import io.javaoperatorsdk.operator.junit.LocallyRunOperatorExtension;
4+
import io.javaoperatorsdk.operator.sample.externalstate.ExternalStateReconciler;
5+
import org.junit.jupiter.api.Test;
6+
import org.junit.jupiter.api.extension.RegisterExtension;
7+
38
class ExternalStateIT {
49

5-
// @RegisterExtension
6-
// LocallyRunOperatorExtension operator =
7-
// LocallyRunOperatorExtension.builder().withReconciler(ExternalStateReconciler.class)
8-
// .build();
10+
@RegisterExtension
11+
LocallyRunOperatorExtension operator =
12+
LocallyRunOperatorExtension.builder().withReconciler(ExternalStateReconciler.class)
13+
.build();
914

15+
@Test
16+
public void reconcilesResourceWithPersistentState() {
1017

18+
}
1119

1220
}

0 commit comments

Comments
 (0)