()
| 65 | |
| 66 | #[test] |
| 67 | fn timestamp_cmp() { |
| 68 | assert!(Timestamp::new() == Timestamp::new()); |
| 69 | assert!(Timestamp::new() <= Timestamp::new()); |
| 70 | assert!(Timestamp::new() >= Timestamp::new()); |
| 71 | assert!(Timestamp::new().increment() > Timestamp::new()); |
| 72 | assert!(Timestamp::new().push() > Timestamp::new()); |
| 73 | assert!(Timestamp::new().push() < Timestamp::new().increment()); |
| 74 | assert!(Timestamp::new().increment().push() > Timestamp::new().push()); |
| 75 | assert!(Timestamp::new().increment().push() > Timestamp::new().increment()); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | impl StepLite for Timestamp { |
nothing calls this directly
no outgoing calls
no test coverage detected