diff --git a/Tests/SwiftCollectionsTests/Chunk/DictionaryChunkedTests.swift b/Tests/SwiftCollectionsTests/Chunk/DictionaryChunkedTests.swift new file mode 100644 index 0000000..45611e9 --- /dev/null +++ b/Tests/SwiftCollectionsTests/Chunk/DictionaryChunkedTests.swift @@ -0,0 +1,12 @@ +// +// DictionaryChunkedTests.swift +// +// +// Created by R. Kukuh on 26/03/23. +// + +import XCTest +@testable import SwiftCollections + +// TODO: Write a successful test case for Dictionary's `chunk` extension +// The main problem is that the order of the elements in the Dictionary may not be the same every time the test is run, causing the comparison to fail.