Skip to content

Commit ee0ed85

Browse files
committed
[NFC] Update OpenGraphCompatibilityTests
1 parent 9ecbdd6 commit ee0ed85

20 files changed

+41
-41
lines changed

Tests/OpenGraphCompatibilityTests/Attribute/Attribute/AnyAttributeTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Attribute/AnyAttributeCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// AnyAttributeTests.swift
2+
// AnyAttributeCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
@@ -9,7 +9,7 @@ import Testing
99
// Report to upstream for investigation when we bump to 5.10
1010
#if canImport(Darwin)
1111
@Suite(.disabled(if: !compatibilityTestEnabled, "Attribute is not implemented"))
12-
final class AnyAttributeTests: AttributeTestBase {
12+
final class AnyAttributeCompatibilityTests: AttributeTestBase {
1313
@Test
1414
func constantValue() throws {
1515
let attributeNil = AnyAttribute.nil

Tests/OpenGraphCompatibilityTests/Attribute/Attribute/AttributeTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Attribute/AttributeCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//
2-
// AttributeTests.swift
2+
// AttributeCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
#if canImport(Darwin)
88
@Suite(.disabled(if: !compatibilityTestEnabled, "Attribute is not implemented"))
9-
final class AttributeTests: AttributeTestBase {
9+
final class AttributeCompatibilityTests: AttributeTestBase {
1010
@Test
1111
func initWithValue() {
1212
let intAttribute = Attribute(value: 0)

Tests/OpenGraphCompatibilityTests/Attribute/Attribute/ExternalTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Attribute/ExternalCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// ExternalTests.swift
2+
// ExternalCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
@@ -9,7 +9,7 @@ import Testing
99
// Report to upstream for investigation when we bump to 5.10
1010
#if canImport(Darwin)
1111
@Suite(.disabled(if: !compatibilityTestEnabled, "Attribute is not implemented"))
12-
final class ExternalTests: AttributeTestBase {
12+
final class ExternalCompatibilityTests: AttributeTestBase {
1313
@Test
1414
func example() throws {
1515
let type = External<Int>.self

Tests/OpenGraphCompatibilityTests/Attribute/Attribute/FocusTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Attribute/FocusCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//
2-
// FocusTests.swift
2+
// FocusCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
#if canImport(Darwin)
88
@Suite(.disabled(if: !compatibilityTestEnabled, "Attribute is not implemented"))
9-
final class FocusTests: AttributeTestBase {
9+
final class FocusCompatibilityTests: AttributeTestBase {
1010
struct Demo {
1111
var a: Int
1212
var b: Double

Tests/OpenGraphCompatibilityTests/Attribute/Attribute/PointerOffsetTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Attribute/PointerOffsetCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
//
2-
// PointerOffsetTests.swift
2+
// PointerOffsetCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import RealModule
66
import Testing
77

8-
struct PointerOffsetTests {
8+
struct PointerOffsetCompatibilityTests {
99
@Test
1010
func plainInitAndProperty() {
1111
typealias Base = Tuple<Int, Int>

Tests/OpenGraphCompatibilityTests/Attribute/Indirect/IndirectAttributeTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Indirect/IndirectAttributeCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//
2-
// IndirectAttributeTests.swift
2+
// IndirectAttributeCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
#if canImport(Darwin)
88
@Suite(.disabled(if: !compatibilityTestEnabled, "IndirectAttribute is not implemented"))
9-
final class IndirectAttributeTests: AttributeTestBase {
9+
final class IndirectAttributeCompatibilityTests: AttributeTestBase {
1010
@Test
1111
func basic() {
1212
let source = Attribute(value: 0)

Tests/OpenGraphCompatibilityTests/Attribute/Optional/AnyOptionalAttributeTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Optional/AnyOptionalAttributeCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//
2-
// AnyOptionalAttributeTests.swift
2+
// AnyOptionalAttributeCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
#if canImport(Darwin)
88
@Suite(.disabled(if: !compatibilityTestEnabled, "AnyOptionalAttribute is not implemented"))
9-
final class AnyOptionalAttributeTests: AttributeTestBase {
9+
final class AnyOptionalAttributeCompatibilityTests: AttributeTestBase {
1010
@Test
1111
func basicInit() {
1212
let o1 = AnyOptionalAttribute()

Tests/OpenGraphCompatibilityTests/Attribute/Optional/OptionalAttributeTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Optional/OptionalAttributeCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
//
2-
// OptionalAttributeTests.swift
2+
// OptionalAttributeCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
#if canImport(Darwin)
88
@Suite(.disabled(if: !compatibilityTestEnabled, "OptionalAttribute is not implemented"))
9-
final class OptionalAttributeTests: AttributeTestBase {
9+
final class OptionalAttributeCompatibilityTests: AttributeTestBase {
1010
@Test
1111
func basicInit() {
1212
let ao1 = AnyOptionalAttribute()

Tests/OpenGraphCompatibilityTests/Attribute/Rule/MapTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Rule/MapCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
//
2-
// MapTests.swift
2+
// MapCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

77
@Suite(.disabled(if: !compatibilityTestEnabled))
8-
final class MapTests: AttributeTestBase {
8+
final class MapCompatibilityTests: AttributeTestBase {
99
@Test
1010
func description() throws {
1111
let map = Map(.init(value: 2)) { $0.description }

Tests/OpenGraphCompatibilityTests/Attribute/Rule/RuleTests.swift renamed to Tests/OpenGraphCompatibilityTests/Attribute/Rule/RuleCompatibilityTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
//
2-
// RuleTests.swift
2+
// RuleCompatibilityTests.swift
33
// OpenGraphCompatibilityTests
44

55
import Testing
66

7-
struct RuleTests {
7+
struct RuleCompatibilityTests {
88
@Test
99
func ruleInitialValue() throws {
1010
struct A: Rule {

0 commit comments

Comments
 (0)