अगर आप अपने ऐप्लिकेशन के कॉम्पोनेंट के तौर पर स्थानीय Service
को लागू कर रहे हैं, तो
इंस्ट्रूमेंटेड टेस्ट बना सकता है, ताकि यह पुष्टि की जा सके कि उसका व्यवहार सही है.
AndroidX Test, आपके Service
ऑब्जेक्ट की जांच करने के लिए एपीआई उपलब्ध कराता है
आइसोलेशन. ServiceTestRule
क्लास एक JUnit 4 नियम है, जो आपकी
सेवा से पहले और बाद में सेवा बंद कर देता है
परीक्षण पूरे हुए. JUnit 4 के नियमों के बारे में ज़्यादा जानने के लिए, JUnit
दस्तावेज़ में दिया गया है.
अपना टेस्टिंग एनवायरमेंट सेट अप करें
सेवा के लिए अपना इंटिग्रेशन टेस्ट बनाने से पहले, पक्का करें कि जैसा कि यह प्रोजेक्ट सेट अप करें AndroidX टेस्ट.
सेवाओं के लिए इंटिग्रेशन टेस्ट बनाना
आपका इंटिग्रेशन टेस्ट, JUnit 4 टेस्ट क्लास के तौर पर लिखा जाना चाहिए. ज़्यादा जानकारी के लिए JUnit 4 टेस्ट क्लास बनाने और JUnit 4 दावा करने के तरीकों का इस्तेमाल करने के बारे में जानने के लिए, इंस्ट्रुमेंटेड टेस्ट क्लास बनाना.
@Rule
का इस्तेमाल करके, अपने टेस्ट में ServiceTestRule
इंस्टेंस बनाएं
एनोटेशन.
Kotlin
@get:Rule val serviceRule = ServiceTestRule()
Java
@Rule public final ServiceTestRule serviceRule = new ServiceTestRule();
नीचे दिया गया उदाहरण दिखाता है कि आप
सेवा. जांच का तरीका testWithBoundService()
पुष्टि करता है कि ऐप्लिकेशन बाइंड करता है या नहीं
स्थानीय सेवा में और सेवा इंटरफ़ेस के काम करने के तरीके से मेल खाता है
सही तरीके से.
Kotlin
@Test @Throws(TimeoutException::class) fun testWithBoundService() { // Create the service Intent. val serviceIntent = Intent( ApplicationProvider.getApplicationContext<Context>(), LocalService::class.java ).apply { // Data can be passed to the service via the Intent. putExtra(SEED_KEY, 42L) } // Bind the service and grab a reference to the binder. val binder: IBinder = serviceRule.bindService(serviceIntent) // Get the reference to the service, or you can call // public methods on the binder directly. val service: LocalService = (binder as LocalService.LocalBinder).getService() // Verify that the service is working correctly. assertThat(service.getRandomInt(), `is`(any(Int::class.java))) }
Java
@Test public void testWithBoundService() throws TimeoutException { // Create the service Intent. Intent serviceIntent = new Intent(ApplicationProvider.getApplicationContext(), LocalService.class); // Data can be passed to the service via the Intent. serviceIntent.putExtra(LocalService.SEED_KEY, 42L); // Bind the service and grab a reference to the binder. IBinder binder = serviceRule.bindService(serviceIntent); // Get the reference to the service, or you can call // public methods on the binder directly. LocalService service = ((LocalService.LocalBinder) binder).getService(); // Verify that the service is working correctly. assertThat(service.getRandomInt()).isAssignableTo(Integer.class); }
अन्य संसाधन
इस विषय के बारे में ज़्यादा जानने के लिए, यहां दिए गए अन्य संसाधन देखें.