안녕하세요.
Microsoft MVP 이길복입니다.
다음 링크의 내용을 읽어보시면 인앱결제 테스트를 하실 수 있으실 겁니다.
https://msdn.microsoft.com/ko-kr/library/windows/apps/xaml/mt219684.aspx
요점은 실제로 사용되는 CurrentApp 대신 CurrentAppSimulator 를 이용하시는 겁니다.
DEBUG 모드일 때만 대체해서 작동하도록 하시면, 두고두고 테스트가 수월하시겠네요.
예를들어 다음과 같이요.
#if DEBUG
var licenseInformation = CurrentApp.LicenseInformation;
#else
var licenseInformation = CurrentAppSimulator.LicenseInformation;
#endif
licenseInformation.DoSomething();
Do it yourself!, Slow and steady wins the race!