diff options
Diffstat (limited to 'vswitches/vswitch.py')
-rw-r--r-- | vswitches/vswitch.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vswitches/vswitch.py b/vswitches/vswitch.py index dd69e6d9..efa3a349 100644 --- a/vswitches/vswitch.py +++ b/vswitches/vswitch.py @@ -36,6 +36,13 @@ class IVSwitch(object): """ raise NotImplementedError() + def restart(self): + """Retart the vSwitch + + Restart of vSwitch is required for failover testcases. + """ + raise NotImplementedError() + def stop(self): """Stop the vSwitch |