From 1de68dcf9e86fdbfa531b95385be3cc563668c86 Mon Sep 17 00:00:00 2001 From: "R. Kukuh" Date: Sun, 26 Mar 2023 01:35:03 +0700 Subject: [PATCH] Add blank test case for Dictionary's chunk extension --- .../Chunk/DictionaryChunkedTests.swift | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Tests/SwiftCollectionsTests/Chunk/DictionaryChunkedTests.swift 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.