public void TestThatGetXDocumentFromFileReturnsExpectedXDocument()
        {
            var filepath = Constants.TestFileName;

            Tests.Common.Setup.CreateFileWithText(filepath, Constants.XmlFileText);

            var xDocument = xmlService.GetXDocumentFromFile(filepath);

            Cleanup.DeleteFileIfExists(filepath);
            Assert.IsNotNull(xDocument);
        }