protected override void RunTool()
        {
            var licenseRunner = new GenymotionLicenseRunner(FileSystem, Environment, ProcessRunner, Tools, Settings);

            licenseRunner.Info();
        }
        public static void RegisterGenymotionLicense(this ICakeContext context, string licenseKey, GenymotionLicenseSettings settings)
        {
            var runner = new GenymotionLicenseRunner(context.FileSystem, context.Environment, context.ProcessRunner, context.Tools, settings);

            runner.Register(licenseKey);
        }