[MTest] public void HandleBootAuthFailed()
    {
        Autoya.forceFailFirstBoot = true;

        Autoya.Auth_DeleteAllUserData();

        var bootAuthFailHandled = false;

        Autoya.Auth_SetOnBootAuthFailed(
            (code, reason) => {
            bootAuthFailHandled = true;
        }
            );

        RunOnMainThread(
            () => Autoya.Auth_AttemptAuthentication()
            );

        WaitUntil(
            () => bootAuthFailHandled,
            10,
            "failed to handle bootAuthFailed."
            );

        Autoya.forceFailFirstBoot = false;
    }
    [MTest] public void DeleteAllUserData()
    {
        Autoya.Auth_DeleteAllUserData();

        var authenticated = Autoya.Auth_IsAuthenticated();

        Assert(!authenticated, "not deleted.");

        RunOnMainThread(
            () => {
            Autoya.Auth_AttemptAuthentication();
        }
            );

        WaitUntil(
            () => Autoya.Auth_IsAuthenticated(),
            5,
            "failed to firstBoot."
            );
    }