@mock.patch('yardstick.benchmark.scenarios.networking.pktgen_dpdk_throughput.ssh')
+@mock.patch('yardstick.benchmark.scenarios.networking.pktgen_dpdk_throughput.time')
 class PktgenDPDKTestCase(unittest.TestCase):
 
     def setUp(self):
             }
         }
 
-    def test_pktgen_dpdk_throughput_successful_setup(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_successful_setup(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60},
         }
         self.assertIsNotNone(p.client)
         self.assertEqual(p.setup_done, True)
 
-    def test_pktgen_dpdk_throughput_successful_no_sla(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_successful_no_sla(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60, 'number_of_ports': 10},
         }
         expected_result["packetsize"] = 60
         self.assertEqual(result, expected_result)
 
-    def test_pktgen_dpdk_throughput_successful_sla(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_successful_sla(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60, 'number_of_ports': 10},
             'sla': {'max_ppm': 10000}
         expected_result["packetsize"] = 60
         self.assertEqual(result, expected_result)
 
-    def test_pktgen_dpdk_throughput_unsuccessful_sla(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_unsuccessful_sla(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60, 'number_of_ports': 10},
             'sla': {'max_ppm': 1000}
         mock_ssh.SSH().execute.return_value = (0, sample_output, '')
         self.assertRaises(AssertionError, p.run, result)
 
-    def test_pktgen_dpdk_throughput_unsuccessful_script_error(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_unsuccessful_script_error(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60, 'number_of_ports': 10},
             'sla': {'max_ppm': 1000}
         mock_ssh.SSH().execute.return_value = (1, '', 'FOOBAR')
         self.assertRaises(RuntimeError, p.run, result)
 
-    def test_pktgen_dpdk_throughput_is_dpdk_setup(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_is_dpdk_setup(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60},
         }
         mock_ssh.SSH().execute.assert_called_with(
             "ip a | grep eth1 2>/dev/null")
 
-    def test_pktgen_dpdk_throughput_dpdk_setup(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_dpdk_setup(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60},
         }
 
         self.assertEqual(p.dpdk_setup_done, True)
 
-    def test_pktgen_dpdk_throughput_dpdk_get_result(self, mock_ssh):
+    def test_pktgen_dpdk_throughput_dpdk_get_result(self, mock__time, mock_ssh):
         args = {
             'options': {'packetsize': 60},
         }