public void ListFonts()
        {
            try
            {
                ReportingCloud rc = new ReportingCloud(sUsername, sPassword, uriBasePath);

                // list all templates
                string[] fonts = rc.ListFonts();

                foreach (string font in fonts)
                {
                    Console.WriteLine(font);
                }
            }
            catch (Exception exc)
            {
                Assert.Fail(exc.Message);
            }
        }