Ping test on 5-host single-switch topology
( self )
| 37 | self.assertEqual( dropped, 0 ) |
| 38 | |
| 39 | def testSingle5( self ): |
| 40 | "Ping test on 5-host single-switch topology" |
| 41 | mn = Mininet( SingleSwitchTopo( k=5 ), self.switchClass, Host, |
| 42 | Controller, waitConnected=True ) |
| 43 | dropped = mn.run( mn.ping ) |
| 44 | self.assertEqual( dropped, 0 ) |
| 45 | |
| 46 | # pylint: enable=E1101 |
| 47 |
nothing calls this directly
no test coverage detected