Ping test on minimal topology
( self )
| 30 | cleanup() |
| 31 | |
| 32 | def testMinimal( self ): |
| 33 | "Ping test on minimal topology" |
| 34 | mn = Mininet( SingleSwitchTopo(), self.switchClass, Host, Controller, |
| 35 | waitConnected=True ) |
| 36 | dropped = mn.run( mn.ping ) |
| 37 | self.assertEqual( dropped, 0 ) |
| 38 | |
| 39 | def testSingle5( self ): |
| 40 | "Ping test on 5-host single-switch topology" |
nothing calls this directly
no test coverage detected