aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Reference/LuaUnitAssertionFunctions/6_TableAssertions.md
blob: 1122bfcce9e3257bf075f5aad722b3e1ca87e81e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Table assertions

* **_AFT.assertItemsEquals(actual, expected)**

    Assert that two tables contain the same items, irrespective of their keys.

    This function is practical for example if you want to compare two lists but
    where items are not in the same order:

```lua
    luaunit.assertItemsEquals( {1,2,3}, {3,2,1} ) -- assertion succeeds
```
    The comparison is not recursive on the items: if any of the items are tables,
    they are compared using table equality (like as in assertEquals() ), where the
    key matters.

```lua
    luaunit.assertItemsEquals( {1,{2,3},4}, {4,{3,2,},1} ) -- assertion fails because {2,3} ~= {3,2}
```