private void OnServiceEvent(object sender, AutofillContainer.AuthenticationEventArgs e)
        {
            AutofillContainer a1 = new AutofillContainer("myContent");

            e.AutofillContainer = a1;
            a1 = e.AutofillContainer;
        }
        public void AutofillContainerListEvent()
        {
            tlog.Debug(tag, $"AutofillContainerListEvent START");
            AutofillContainer a1 = new AutofillContainer("myContainer");

            a1.ListEvent += OnListEvent;
            a1.ListEvent -= OnListEvent;
            object o1 = new object();

            AutofillContainer.AuthenticationEventArgs e = new AutofillContainer.AuthenticationEventArgs();

            OnServiceEvent(o1, e);
            a1.Dispose();

            tlog.Debug(tag, $"AutofillContainerServiceEvent END (OK)");
            Assert.Pass("AutofillContainerServiceEvent");
        }