tdd 진행

This commit is contained in:
2025-08-09 03:09:17 +09:00
parent ed8c7eacba
commit 6033d59590
74 changed files with 17804 additions and 395 deletions
@@ -0,0 +1,23 @@
// 테스트용 Mock 클래스
// MockInAppPurchaseService 확장 클래스
class MockInAppPurchaseServiceWithInitialize {
bool isPurchaseVerified = false;
dynamic lastVerifiedPurchase;
String? error;
// initialize 메서드 추가
Future<bool> initialize() async {
return true;
}
// 구독 구매 메서드
Future<bool> purchaseSubscription(dynamic planType) async {
return true;
}
// 구독 복원 메서드
Future<bool> restorePurchases() async {
return true;
}
}