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

                string[] saDictionaries = rc.GetAvailableDictionaries();

                // check, if images are created
                Assert.IsFalse(saDictionaries.Length == 0);
            }
            catch (Exception exc)
            {
                Assert.Fail(exc.Message);
            }
        }
        public void ProofingCheckTest()
        {
            try
            {
                ReportingCloud rc = new ReportingCloud(sUsername, sPassword, uriBasePath);

                List <IncorrectWord> incorrectWords = rc.CheckText("Thiss%20is%20a%20sample%20text", rc.GetAvailableDictionaries()[0]);

                // check, if images are created
                Assert.IsFalse(incorrectWords.Count == 0);
            }
            catch (Exception exc)
            {
                Assert.Fail(exc.Message);
            }
        }