public void GetRemoteProductListTest()
        {
            string pluginDir = Environment.CurrentDirectory;

            try {
                InstallationManager target = new InstallationManager(pluginDir);
                var productList            = target.GetRemoteProductList();
                Assert.IsTrue(productList != null);
            } catch (Exception e) {
                Assert.Fail("Connection to the update service failed. " + e.Message);
            }
        }