forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegrationDockerTestSuite.java
More file actions
43 lines (41 loc) · 1.47 KB
/
Copy pathIntegrationDockerTestSuite.java
File metadata and controls
43 lines (41 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.github.dockerjava.junit.suite;
import com.github.dockerjava.cmd.AttachContainerCmdIT;
import com.github.dockerjava.cmd.AuthCmdIT;
import com.github.dockerjava.cmd.BuildImageCmdIT;
import com.github.dockerjava.cmd.CommitCmdIT;
import com.github.dockerjava.cmd.ConnectToNetworkCmdIT;
import com.github.dockerjava.cmd.CopyArchiveFromContainerCmdIT;
import com.github.dockerjava.cmd.CopyArchiveToContainerCmdIT;
import com.github.dockerjava.cmd.CopyFileFromContainerCmdIT;
import com.github.dockerjava.cmd.CreateContainerCmdIT;
import com.github.dockerjava.cmd.CreateNetworkCmdIT;
import com.github.dockerjava.cmd.CreateVolumeCmdIT;
import com.github.dockerjava.cmd.EventsCmdIT;
import com.github.dockerjava.cmd.InfoCmdIT;
import com.github.dockerjava.cmd.RemoveNetworkCmdIT;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
/**
* Tests that requires real connection to docker.
*
* @author Kanstantsin Shautsou
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
AttachContainerCmdIT.class,
AuthCmdIT.class,
BuildImageCmdIT.class,
CommitCmdIT.class,
CopyArchiveFromContainerCmdIT.class,
CopyArchiveToContainerCmdIT.class,
CopyFileFromContainerCmdIT.class,
ConnectToNetworkCmdIT.class,
CreateContainerCmdIT.class,
CreateNetworkCmdIT.class,
CreateVolumeCmdIT.class,
EventsCmdIT.class,
InfoCmdIT.class,
RemoveNetworkCmdIT.class,
})
public class IntegrationDockerTestSuite {
}