opencas-test-framework/test_utils/time.py
Robert Baldyga 40f08a369a Move test-framework to its own repository
Signed-off-by: Robert Baldyga <baldyga.r@gmail.com>
2023-05-01 18:55:34 +02:00

15 lines
321 B
Python

#
# Copyright(c) 2019-2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
from attotime import attotimedelta
class Time(attotimedelta):
def total_microseconds(self):
return self.total_nanoseconds() / 1_000
def total_milliseconds(self):
return self.total_nanoseconds() / 1_000_000