HasItemsNoOrder checks that an observable produces the corresponding items regardless of the order.
(items ...interface{})
| 119 | |
| 120 | // HasItemsNoOrder checks that an observable produces the corresponding items regardless of the order. |
| 121 | func HasItemsNoOrder(items ...interface{}) RxAssert { |
| 122 | return newAssertion(func(a *rxAssert) { |
| 123 | a.checkHasItemsNoOrder = true |
| 124 | a.itemsNoOrder = items |
| 125 | }) |
| 126 | } |
| 127 | |
| 128 | // IsNotEmpty checks that the observable produces some items. |
| 129 | func IsNotEmpty() RxAssert { |
searching dependent graphs…