db823ed6e9
Definition of shared volumes and containers has been moved to yaml files to be together with network topology. Containers are automatically run at the beginning of each test case and stopped afterward. Type: test Signed-off-by: Maros Ondrejicka <maros.ondrejicka@pantheon.tech> Change-Id: I264cbb4f1355f8bd7aade221e9609fb5b9bd693e
12 lines
162 B
Go
12 lines
162 B
Go
package main
|
|
|
|
type NsSuite struct {
|
|
HstSuite
|
|
}
|
|
|
|
func (s *NsSuite) SetupSuite() {
|
|
s.teardownSuite = setupSuite(&s.Suite, "ns")
|
|
s.loadContainerTopology("ns")
|
|
}
|
|
|