A project I'm working on interacts heavily with Subversion, using svnkit.

Are there any examples on running a mock in-memory svn instance, to help facilitate testing etc?

Cheers

Marty

link|improve this question

73% accept rate
feedback

2 Answers

Why don't you just create a simple SVN repository with mock data ? It's just a few commands.

link|improve this answer
And you could use Runtime.exec(<..>) to execute svnadm within your test class(es) – Andreas_D May 18 '09 at 11:54
The point of using SVNKit is that it provides a much nicer API to SVN than using Runtime.exec() – Don Dec 10 '10 at 10:22
feedback

you may be intested in mockito, that should work fine with SVNkit

my 0.02$

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.