在 nUnit 中,我们可以这样做:
Expect(actualColleciton, EquivalentTo(expectedCollection));
和
Expect(actualCollection, EqualTo(expectedCollection));
Pester 中是否有等价物?
我知道我能做到
$actualCollection | Should Be $expectedCollection
但它的行为并不像您期望的那样。
我使用正确的语法吗?