File tree Expand file tree Collapse file tree 9 files changed +18
-18
lines changed
core/flamingock-test-support/src/main/java/io/flamingock/support Expand file tree Collapse file tree 9 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 1818
1919import io .flamingock .internal .core .builder .AbstractChangeRunnerBuilder ;
2020import io .flamingock .internal .core .builder .BuilderAccessor ;
21- import io .flamingock .support .impl .GivenStageImpl ;
21+ import io .flamingock .support .stages .GivenStage ;
22+ import io .flamingock .support .stages .GivenStageImpl ;
23+ import io .flamingock .support .stages .ThenStage ;
24+ import io .flamingock .support .stages .WhenStage ;
2225
2326/**
2427 * Entry point for the Flamingock BDD-style test support framework.
Original file line number Diff line number Diff line change 1818import io .flamingock .api .annotations .Apply ;
1919import io .flamingock .internal .common .core .audit .AuditEntry ;
2020import io .flamingock .internal .common .core .audit .AuditTxType ;
21+ import io .flamingock .support .stages .ThenStage ;
22+ import io .flamingock .support .stages .WhenStage ;
2123
2224import java .time .LocalDateTime ;
2325
6567 * <li>{@link #ROLLBACK_FAILED(String)} - Expect a change whose rollback failed</li>
6668 * </ul>
6769 *
68- * @see io.flamingock.support. WhenStage#thenExpectAuditSequenceStrict(AuditEntryExpectation...)
69- * @see io.flamingock.support. ThenStage#andExpectAuditSequenceStrict(AuditEntryExpectation...)
70+ * @see WhenStage#thenExpectAuditSequenceStrict(AuditEntryExpectation...)
71+ * @see ThenStage#andExpectAuditSequenceStrict(AuditEntryExpectation...)
7072 */
7173public class AuditEntryExpectation {
7274
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support ;
16+ package io .flamingock .support .stages ;
17+
18+ import io .flamingock .support .FlamingockTestSupport ;
1719
1820/**
1921 * Represents the "Given" phase of the BDD test flow for setting up preconditions.
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support .impl ;
16+ package io .flamingock .support .stages ;
1717
18- import io .flamingock .internal .core .builder .AbstractChangeRunnerBuilder ;
1918import io .flamingock .internal .core .builder .BuilderAccessor ;
20- import io .flamingock .support .GivenStage ;
21- import io .flamingock .support .ThenStage ;
22- import io .flamingock .support .WhenStage ;
2319
2420import java .util .ArrayList ;
2521import java .util .Arrays ;
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support ;
16+ package io .flamingock .support . stages ;
1717
1818import io .flamingock .support .domain .AuditEntryExpectation ;
1919
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support .impl ;
16+ package io .flamingock .support .stages ;
1717
1818import io .flamingock .internal .core .builder .BuilderAccessor ;
19- import io .flamingock .support .ThenStage ;
2019import io .flamingock .support .domain .AuditEntryExpectation ;
2120import io .flamingock .support .validation .ValidationHandler ;
2221import io .flamingock .support .validation .Validator ;
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support ;
16+ package io .flamingock .support . stages ;
1717
1818import io .flamingock .support .domain .AuditEntryExpectation ;
1919
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16- package io .flamingock .support .impl ;
16+ package io .flamingock .support .stages ;
1717
18- import io .flamingock .internal .common .core .audit .AuditEntry ;
1918import io .flamingock .internal .core .builder .BuilderAccessor ;
20- import io .flamingock .support .ThenStage ;
21- import io .flamingock .support .WhenStage ;
2219import io .flamingock .support .domain .AuditEntryExpectation ;
2320
24- import java .util .List ;
2521import java .util .function .Consumer ;
2622
2723public class WhenStageImpl implements WhenStage {
Original file line number Diff line number Diff line change @@ -24,4 +24,6 @@ public class ValidationResult {
2424 public List <ValidationError > getErrors () {
2525 return new ArrayList <>();
2626 }
27+
28+
2729}
You can’t perform that action at this time.
0 commit comments