sort groups under files

This commit is contained in:
Yonas Kolb
2018-07-24 22:45:52 +10:00
parent e915fdf421
commit 91d2177f84
3 changed files with 9 additions and 9 deletions
@@ -501,13 +501,13 @@ class SourceGeneratorTests: XCTestCase {
let group = pbxProj.objects.group(named: "Sources", inGroup: try pbxProj.getMainGroup())!.object
let names = group.children.compactMap { pbxProj.objects.getFileElement(reference: $0)?.nameOrPath }
try expect(names) == [
"group",
"group2",
"1file.a",
"10file.a",
"file.swift",
"file2.swift",
"file3.swift",
"group",
"group2",
]
}
}