Restructured the folder structure in the library and test targets.

This commit is contained in:
2025-01-18 03:50:18 +01:00
parent 1466bff250
commit 1094bbb6c8
15 changed files with 0 additions and 0 deletions
@@ -0,0 +1,20 @@
import Testing
@testable import ColibriLibrary
struct ResourceFileTests {
// MARK: Properties tests
@Test(arguments: zip(ResourceFile.allCases,
[".dockerignore", ".gitignore", "LICENSE", "Package.swift", "README.md"]))
func fileName(for resource: ResourceFile, expects fileName: String) async throws {
// GIVEN
// WHEN
let result = resource.fileName
// THEN
#expect(result == fileName)
}
}