mirror of
https://github.com/logos-storage/swarmsim.git
synced 2026-01-02 13:53:07 +00:00
12 lines
244 B
Nim
12 lines
244 B
Nim
import unittest
|
|
|
|
import swarmsim/engine/schedulableevent
|
|
|
|
suite "schedulable event":
|
|
test "should be ordered by time":
|
|
let e1 = SchedulableEvent(time: 1)
|
|
let e2 = SchedulableEvent(time: 3)
|
|
|
|
check(e1 < e2)
|
|
check(not (e2 < e1))
|