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 = "junit-runner-BaseTestRunner"))]
__jni_bindgen! {
    /// public class [BaseTestRunner](https://developer.android.com/reference/junit/runner/BaseTestRunner.html)
    ///
    /// Required feature: "junit-runner-BaseTestRunner"
    public class BaseTestRunner ("junit/runner/BaseTestRunner") extends crate::java::lang::Object, implements crate::junit::framework::TestListener {

        /// [BaseTestRunner](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#BaseTestRunner())
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::junit::runner::BaseTestRunner>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "<init>", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "<init>\0", "()V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [startTest](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#startTest(junit.framework.Test))
        ///
        /// Required features: "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "junit-framework-Test")))]
        pub fn startTest<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::Test>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | SYNCRONIZED, .name == "startTest", .descriptor == "(Ljunit/framework/Test;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "startTest\0", "(Ljunit/framework/Test;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [savePreferences](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#savePreferences())
        pub fn savePreferences<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "savePreferences", .descriptor == "()V"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "savePreferences\0", "()V\0");
                __jni_env.call_static_void_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setPreference](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#setPreference(java.lang.String,%20java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn setPreference<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "setPreference", .descriptor == "(Ljava/lang/String;Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "setPreference\0", "(Ljava/lang/String;Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [endTest](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#endTest(junit.framework.Test))
        ///
        /// Required features: "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "junit-framework-Test")))]
        pub fn endTest<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::Test>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | SYNCRONIZED, .name == "endTest", .descriptor == "(Ljunit/framework/Test;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "endTest\0", "(Ljunit/framework/Test;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addError](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#addError(junit.framework.Test,%20java.lang.Throwable))
        ///
        /// Required features: "java-lang-Throwable", "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "java-lang-Throwable", feature = "junit-framework-Test")))]
        pub fn addError<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::Test>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Throwable>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | SYNCRONIZED, .name == "addError", .descriptor == "(Ljunit/framework/Test;Ljava/lang/Throwable;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "addError\0", "(Ljunit/framework/Test;Ljava/lang/Throwable;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [addFailure](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#addFailure(junit.framework.Test,%20junit.framework.AssertionFailedError))
        ///
        /// Required features: "junit-framework-AssertionFailedError", "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "junit-framework-AssertionFailedError", feature = "junit-framework-Test")))]
        pub fn addFailure<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::Test>>, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::AssertionFailedError>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | SYNCRONIZED, .name == "addFailure", .descriptor == "(Ljunit/framework/Test;Ljunit/framework/AssertionFailedError;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "addFailure\0", "(Ljunit/framework/Test;Ljunit/framework/AssertionFailedError;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [testStarted](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#testStarted(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn testStarted<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | ABSTRACT, .name == "testStarted", .descriptor == "(Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "testStarted\0", "(Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [testEnded](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#testEnded(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn testEnded<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | ABSTRACT, .name == "testEnded", .descriptor == "(Ljava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "testEnded\0", "(Ljava/lang/String;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [testFailed](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#testFailed(int,%20junit.framework.Test,%20java.lang.Throwable))
        ///
        /// Required features: "java-lang-Throwable", "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "java-lang-Throwable", feature = "junit-framework-Test")))]
        pub fn testFailed<'env>(&'env self, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::junit::framework::Test>>, arg2: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Throwable>>) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | ABSTRACT, .name == "testFailed", .descriptor == "(ILjunit/framework/Test;Ljava/lang/Throwable;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into()), __jni_bindgen::AsJValue::as_jvalue(&arg2.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "testFailed\0", "(ILjunit/framework/Test;Ljava/lang/Throwable;)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getTest](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getTest(java.lang.String))
        ///
        /// Required features: "java-lang-String", "junit-framework-Test"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "junit-framework-Test")))]
        pub fn getTest<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::junit::framework::Test>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "getTest", .descriptor == "(Ljava/lang/String;)Ljunit/framework/Test;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "getTest\0", "(Ljava/lang/String;)Ljunit/framework/Test;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [elapsedTimeAsString](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#elapsedTimeAsString(long))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn elapsedTimeAsString<'env>(&'env self, arg0: i64) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "elapsedTimeAsString", .descriptor == "(J)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "elapsedTimeAsString\0", "(J)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [setLoading](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#setLoading(boolean))
        pub fn setLoading<'env>(&'env self, arg0: bool) -> __jni_bindgen::std::result::Result<(), __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "setLoading", .descriptor == "(Z)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0)];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "setLoading\0", "(Z)V\0");
                __jni_env.call_void_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [extractClassName](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#extractClassName(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn extractClassName<'env>(&'env self, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "extractClassName", .descriptor == "(Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("junit/runner/BaseTestRunner\0", "extractClassName\0", "(Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [truncate](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#truncate(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn truncate<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "truncate", .descriptor == "(Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "truncate\0", "(Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getLoader](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getLoader())
        ///
        /// Required features: "junit-runner-TestSuiteLoader"
        #[cfg(any(feature = "all", all(feature = "junit-runner-TestSuiteLoader")))]
        pub fn getLoader<'env>(&'env self) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::junit::runner::TestSuiteLoader>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC, .name == "getLoader", .descriptor == "()Ljunit/runner/TestSuiteLoader;"
            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("junit/runner/BaseTestRunner\0", "getLoader\0", "()Ljunit/runner/TestSuiteLoader;\0");
                __jni_env.call_object_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getPreference](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getPreference(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn getPreference_String<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "getPreference", .descriptor == "(Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "getPreference\0", "(Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getPreference](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getPreference(java.lang.String,%20int))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn getPreference_String_int<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>, arg1: i32) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "getPreference", .descriptor == "(Ljava/lang/String;I)I"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into()), __jni_bindgen::AsJValue::as_jvalue(&arg1)];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "getPreference\0", "(Ljava/lang/String;I)I\0");
                __jni_env.call_static_int_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [inVAJava](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#inVAJava())
        pub fn inVAJava<'env>(__jni_env: &'env __jni_bindgen::Env) -> __jni_bindgen::std::result::Result<bool, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "inVAJava", .descriptor == "()Z"
            unsafe {
                let __jni_args = [];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "inVAJava\0", "()Z\0");
                __jni_env.call_static_boolean_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getFilteredTrace](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getFilteredTrace(java.lang.Throwable))
        ///
        /// Required features: "java-lang-String", "java-lang-Throwable"
        #[cfg(any(feature = "all", all(feature = "java-lang-String", feature = "java-lang-Throwable")))]
        pub fn getFilteredTrace_Throwable<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::Throwable>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "getFilteredTrace", .descriptor == "(Ljava/lang/Throwable;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "getFilteredTrace\0", "(Ljava/lang/Throwable;)Ljava/lang/String;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getFilteredTrace](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#getFilteredTrace(java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn getFilteredTrace_String<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::std::option::Option<__jni_bindgen::Local<'env, crate::java::lang::String>>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "junit/runner/BaseTestRunner", java.flags == PUBLIC | STATIC, .name == "getFilteredTrace", .descriptor == "(Ljava/lang/String;)Ljava/lang/String;"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_static_method("junit/runner/BaseTestRunner\0", "getFilteredTrace\0", "(Ljava/lang/String;)Ljava/lang/String;\0");
                __jni_env.call_static_object_method_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// public static final [SUITE_METHODNAME](https://developer.android.com/reference/junit/runner/BaseTestRunner.html#SUITE_METHODNAME)
        pub const SUITE_METHODNAME : &'static str = "suite";
    }
}