Ejemplo n.º 1
0
        public void CreateLogWriter_WithDefaultType_ReturnDatabaseLogWriter()
        {
            // Arrange
            WriterType writerType = WriterType.Everviewer;

            // Act
            ILogWriter expectedWriter = WriterFactory.CreateLogWriter(writerType);

            // Assert
            Assert.IsNotNull(expectedWriter, "Default LogWritter instance should not be null.");
        }