Skip to content

Commit ab1e277

Browse files
committed
feedback: refactor tests as well
1 parent 678d6fe commit ab1e277

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/AwsQueryTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/AwsQueryTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols
6+
package software.amazon.smithy.kotlin.codegen.protocols
77

88
import software.amazon.smithy.kotlin.codegen.protocols.AwsQuery
99
import software.amazon.smithy.kotlin.codegen.test.*

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RestJson1Test.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/RestJson1Test.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols
6+
package software.amazon.smithy.kotlin.codegen.protocols
77

88
import software.amazon.smithy.kotlin.codegen.protocols.RestJson1
99
import software.amazon.smithy.kotlin.codegen.test.*

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RestXmlTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/RestXmlTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols
6+
package software.amazon.smithy.kotlin.codegen.protocols
77

88
import software.amazon.smithy.kotlin.codegen.protocols.RestXml
99
import software.amazon.smithy.kotlin.codegen.test.*

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/RpcV2CborTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
* SPDX-License-Identifier: Apache-2.0
44
*/
5-
package software.amazon.smithy.kotlin.codegen.aws.protocols
5+
package software.amazon.smithy.kotlin.codegen.protocols
66

77
import io.kotest.matchers.string.shouldNotContain
88
import software.amazon.smithy.kotlin.codegen.protocols.RpcV2Cbor

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGeneratorTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/core/AwsHttpBindingProtocolGeneratorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
* SPDX-License-Identifier: Apache-2.0
44
*/
5-
package software.amazon.smithy.kotlin.codegen.aws.protocols.core
5+
package software.amazon.smithy.kotlin.codegen.protocols.core
66

77
import software.amazon.smithy.codegen.core.Symbol
88
import software.amazon.smithy.kotlin.codegen.core.KotlinWriter

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/json/AwsJsonHttpBindingResolverTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/json/AwsJsonHttpBindingResolverTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols.json
6+
package software.amazon.smithy.kotlin.codegen.protocols.json
77

88
import software.amazon.smithy.kotlin.codegen.model.expectShape
99
import software.amazon.smithy.kotlin.codegen.protocols.json.AwsJsonHttpBindingResolver

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/json/AwsJsonProtocolSerdeDescriptorGeneratorTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/json/AwsJsonProtocolSerdeDescriptorGeneratorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols.json
6+
package software.amazon.smithy.kotlin.codegen.protocols.json
77

88
import software.amazon.smithy.kotlin.codegen.protocols.json.AwsJsonProtocolSerdeDescriptorGenerator
99
import software.amazon.smithy.kotlin.codegen.test.*

codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/xml/RestXmlSerdeDescriptorGeneratorTest.kt renamed to codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/protocols/xml/RestXmlSerdeDescriptorGeneratorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
package software.amazon.smithy.kotlin.codegen.aws.protocols.xml
6+
package software.amazon.smithy.kotlin.codegen.protocols.xml
77

88
import software.amazon.smithy.kotlin.codegen.protocols.xml.RestXmlSerdeDescriptorGenerator
99
import software.amazon.smithy.kotlin.codegen.test.*

0 commit comments

Comments
 (0)