2020-06-24 08:36:26 +00:00
|
|
|
from core.experience import Experience, ExperienceParameter
|
2015-03-05 10:32:11 +00:00
|
|
|
|
2020-06-24 08:36:26 +00:00
|
|
|
class ExperienceNone(Experience):
|
2015-03-05 10:32:11 +00:00
|
|
|
def __init__(self, xpParamFile, mpTopo, mpConfig):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.__init__(self, xpParamFile, mpTopo, mpConfig)
|
|
|
|
Experience.classicRun(self)
|
2015-03-05 10:32:11 +00:00
|
|
|
|
2015-12-02 08:15:52 +00:00
|
|
|
def prepare(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.prepare(self)
|
2015-03-05 10:32:11 +00:00
|
|
|
|
|
|
|
def clean(self):
|
2020-06-24 08:36:26 +00:00
|
|
|
Experience.clean(self)
|
2015-03-05 10:32:11 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.mpTopo.getCLI()
|