You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
372 B
24 lines
372 B
# test custom native class
|
|
|
|
try:
|
|
import cexample
|
|
import time
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
SLEEP_MS = 100
|
|
TOLERANCE_MS = 20
|
|
|
|
timer = cexample.Timer()
|
|
|
|
t_start = timer.time()
|
|
|
|
time.sleep_ms(100)
|
|
|
|
t_end = timer.time()
|
|
|
|
print(timer)
|
|
print(0 <= t_start <= TOLERANCE_MS)
|
|
print(SLEEP_MS - TOLERANCE_MS <= t_end <= SLEEP_MS + TOLERANCE_MS)
|
|
|