public void Create_Delete_AVD()
        {
            Cake.AndroidAvdCreate("AVDTEST", "system-images;android-26;google_apis;x86", "Nexus 5X", force: true, settings: Settings);

            Assert.Contains(Cake.AndroidAvdListAvds(Settings), a => a.Name == "AVDTEST");

            Cake.AndroidAvdDelete("AVDTEST", Settings);

            Assert.DoesNotContain(Cake.AndroidAvdListAvds(Settings), a => a.Name == "AVDTEST");
        }
        public void List_Avds()
        {
            var avds = Cake.AndroidAvdListAvds(Settings);

            Assert.NotEmpty(avds);
        }