We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39b029 commit e427bd2Copy full SHA for e427bd2
Tests/SwiftDocCTests/Rendering/RenderNodeTranslatorTests.swift
@@ -646,6 +646,13 @@ class RenderNodeTranslatorTests: XCTestCase {
646
"doc://org.swift.docc.example/documentation/FancyProtocol/SomeClass/Equatable-Implementations",
647
"doc://org.swift.docc.example/documentation/FancyProtocol/SomeClass/FancyProtocol-Implementations",
648
])
649
+ let implReferences = defaultImplementationSection.identifiers.compactMap({ renderNode.references[$0] as? TopicRenderReference })
650
+ XCTAssertEqual(implReferences.map({ $0.title }), [
651
+ "Comparable Implementations",
652
+ "Equatable Implementations",
653
+ "FancyProtocol Implementations",
654
+ ])
655
+
656
}
657
658
func testAutomaticTaskGroupTopicsAreSorted() throws {
0 commit comments