public void ConvertFile_InputValidParameters_DoesntReturnException() { var convert = new ConvertModel() { Source = new FileSystemSourceModel() { FullPath = "testPath", SourceFileType = SourceFileType.Json, SourceDestinationType = SourceDestinationType.Filesystem }, Target = new TargetModel() { FullPath = "testPath", TargetFileType = TargetFileType.Xml } }; TestDelegate code = () => _converterService.ConvertFile(convert); Assert.DoesNotThrow(code); }