jni-android-sys 0.0.10

Autogenerated glue code for access Android JVM APIs from Rust
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-test-TestSuiteProvider"))]
__jni_bindgen! {
    /// public interface [TestSuiteProvider](https://developer.android.com/reference/android/test/TestSuiteProvider.html)
    ///
    /// Required feature: "android-test-TestSuiteProvider"
    #[deprecated] public interface TestSuiteProvider ("android/test/TestSuiteProvider") extends crate::java::lang::Object {

        /// [getTestSuite](https://developer.android.com/reference/android/test/TestSuiteProvider.html#getTestSuite())
        ///
        /// Required features: "junit-framework-TestSuite"
        #[cfg(any(feature = "all", all(feature = "junit-framework-TestSuite")))]
        pub fn getTestSuite<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::junit::framework::TestSuite>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/test/TestSuiteProvider", java.flags == PUBLIC | ABSTRACT, .name == "getTestSuite", .descriptor == "()Ljunit/framework/TestSuite;"
            unsafe {
                let __jni_args = [];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/test/TestSuiteProvider\0", "getTestSuite\0", "()Ljunit/framework/TestSuite;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }
    }
}