public IEnumerator HitWithCachedButNotExistMultipleSameInitial()
    {
        yield return(CacheMultipleSameInitial());

        Autoya.Persist_ClearOnMemoryHashCache();

        var hit = Autoya.Persist_HitHash(AutoyaFilePersistTestsFileDomain, "x");

        False(hit);
        yield break;
    }
    public IEnumerator HitWithCached()
    {
        yield return(Cache());

        Autoya.Persist_ClearOnMemoryHashCache();

        var hit = Autoya.Persist_HitHash(AutoyaFilePersistTestsFileDomain, "h");

        True(hit);
        yield break;
    }