如何使用scala測試比較兩個列表的列表?使用scala測試比較嵌套列表
val actual = Array(Row("1", "2"), Row("3", "4"))
val fail_expected = Array(Row("1", "2"), Row("3", "2"))
val pass_expected = Array(Row("3", "4"), Row("1", "2"))
我試圖與
actual should contain theSameElementsAs pass_expected
,但它不能正常工作,它說,兩個數組是不同的,當他們實際上是相同的。
我正在使用funsuite進行scala測試。
轉換數組列表IE'VAL實際=名單(行( 「1」, 「2」),行( 「3」 ,「4」))' –