-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update more build and test dependencies. (#9336)
- Loading branch information
1 parent
204c8c7
commit a9ff548
Showing
10 changed files
with
272 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
public final class com/stripe/android/payments/BuildConfig { | ||
public static final field BUILD_TYPE Ljava/lang/String; | ||
public static final field DEBUG Z | ||
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String; | ||
public fun <init> ()V | ||
} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
...sheet/src/androidTest/java/com/stripe/android/paymentsheet/utils/CustomerSheetTestType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.stripe.android.paymentsheet.utils | ||
|
||
import com.google.testing.junit.testparameterinjector.TestParameter | ||
import com.google.testing.junit.testparameterinjector.TestParameterValuesProvider | ||
|
||
internal enum class CustomerSheetTestType { | ||
AttachToCustomer, | ||
AttachToSetupIntent, | ||
} | ||
|
||
internal object CustomerSheetTestTypeProvider : TestParameter.TestParameterValuesProvider { | ||
override fun provideValues(): List<CustomerSheetTestType> { | ||
internal object CustomerSheetTestTypeProvider : TestParameterValuesProvider() { | ||
override fun provideValues(context: Context?): List<CustomerSheetTestType> { | ||
return CustomerSheetTestType.entries | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
paymentsheet/src/androidTest/java/com/stripe/android/paymentsheet/utils/IntegrationType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.stripe.android.paymentsheet.utils | ||
|
||
import com.google.testing.junit.testparameterinjector.TestParameter | ||
import com.google.testing.junit.testparameterinjector.TestParameterValuesProvider | ||
|
||
internal enum class IntegrationType { | ||
Activity, | ||
Compose, | ||
} | ||
|
||
internal object IntegrationTypeProvider : TestParameter.TestParameterValuesProvider { | ||
override fun provideValues(): List<IntegrationType> { | ||
internal object IntegrationTypeProvider : TestParameterValuesProvider() { | ||
override fun provideValues(context: Context?): List<IntegrationType> { | ||
return IntegrationType.entries | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...heet/src/androidTest/java/com/stripe/android/paymentsheet/utils/ProductIntegrationType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package com.stripe.android.paymentsheet.utils | ||
|
||
import com.google.testing.junit.testparameterinjector.TestParameter | ||
import com.google.testing.junit.testparameterinjector.TestParameterValuesProvider | ||
|
||
internal enum class ProductIntegrationType { | ||
PaymentSheet, | ||
FlowController, | ||
} | ||
|
||
internal object ProductIntegrationTypeProvider : TestParameter.TestParameterValuesProvider { | ||
override fun provideValues(): List<ProductIntegrationType> { | ||
internal object ProductIntegrationTypeProvider : TestParameterValuesProvider() { | ||
override fun provideValues(context: Context?): List<ProductIntegrationType> { | ||
return ProductIntegrationType.entries | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters