Ejemplo n.º 1
0
        public void TestIsDocumentType()
        {
            var documentTypeId   = Guid.NewGuid();
            var documentTypeName = "hello";

            configuration.IsDocumentType(documentTypeId, documentTypeName);

            Assert.AreEqual(documentTypeId, configuration.GetDocumentTypeId());
            Assert.AreEqual(documentTypeName, configuration.GetDocumentTypeName());
        }