Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@
*/
package org.apache.camel.test.infra.ftp.services;

import org.apache.camel.test.infra.common.services.ContainerTestService;
import org.apache.camel.test.infra.common.services.TestService;
import org.junit.jupiter.api.extension.AfterEachCallback;
import org.junit.jupiter.api.extension.BeforeEachCallback;

/**
* Test infra service for Ftp
*/
public interface FtpService extends ContainerTestService, FtpInfraService, TestService, BeforeEachCallback, AfterEachCallback {
public interface FtpService extends FtpInfraService, TestService, BeforeEachCallback, AfterEachCallback {

}
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
*/
package org.apache.camel.test.infra.hazelcast.services;

import org.apache.camel.test.infra.common.services.ContainerTestService;
import org.apache.camel.test.infra.common.services.TestService;

/**
* Test infra service for Hazelcast
*/
public interface HazelcastService extends TestService, HazelcastInfraService, ContainerTestService {
public interface HazelcastService extends TestService, HazelcastInfraService {
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@
*/
package org.apache.camel.test.infra.ignite.services;

import org.apache.camel.test.infra.common.services.ContainerTestService;
import org.apache.camel.test.infra.common.services.TestService;

/**
* Test infra service for Ignite
*/
public interface IgniteService extends TestService, IgniteInfraService, ContainerTestService {
public interface IgniteService extends TestService, IgniteInfraService {
}
Loading