public void GetObjects()
        {
            Console.WriteLine(testlink.about());

            var projects = testlink.GetProjects();

            projects.ForEach(a => Console.WriteLine($"Project: {a.id}, {a.name}"));

            var project   = projects.First(a => a.name == "CMGE");
            var testPlans = testlink.GetProjectTestPlans(project.id);

            testPlans.ForEach(a => Console.WriteLine($"Test Plans: {a.id}, {a.name}"));

            var testSuites = testlink.GetFirstLevelTestSuitesForTestProject(project.id);

            testSuites.ForEach(a => Console.WriteLine($"Test Suites: {a.id}, {a.name}"));

            var testSuite = testSuites.First();
            var testCases = testlink.GetTestCasesForTestSuite(testSuite.id, false);

            testCases.ForEach(a => Console.WriteLine($"Test Cases: {a.id}, {a.name}"));

            var testCase = testlink.GetTestCase(4510, 1);

            Console.WriteLine($"Test Case: {testCase.id}, {testCase.name}");
        }