crauscher
crauscher

Reputation: 6618

FTP Mock for .NET framework

Is there a mock implementation for a ftp server that I can use in my UnitTests. I don't want my tests to depend on a real FTP server.

For JAVA a ftpmock can be found here.

Upvotes: 4

Views: 2844

Answers (1)

Ian Davis
Ian Davis

Reputation: 3858

Have you looked at the Indy Sockets project? They have mocks/stubs for testing their client/servers: http://www.indyproject.org/SocketsCLR/index.EN.aspx - There is another version being worked on, but it hasn't been committed to since March of 2008.

Upvotes: 1

Related Questions