目前在 ScalaTest 中,我们可以做
Set(1,2,3,4) should not contain (5)
Set(1,2,3,4) should not contain (6)
什么是好的ScalaTest风格:
Set(1,2,3,4) 不应包含任何 Set(5,6)
目前,我只能想到
Set(1,2,3,4) & Set(5,6) should be ('empty)
目前在 ScalaTest 中,我们可以做
Set(1,2,3,4) should not contain (5)
Set(1,2,3,4) should not contain (6)
什么是好的ScalaTest风格:
Set(1,2,3,4) 不应包含任何 Set(5,6)
目前,我只能想到
Set(1,2,3,4) & Set(5,6) should be ('empty)