*/
public void testCheckInCommandTest()
throws Exception
{
// First we need to make the workspace writable
IntegrityEditCommand edit = new IntegrityEditCommand();
edit.setLogger( logger );
assertResultIsSuccess( edit.execute( iRepo, fileSet, parameters ) );
// Now lets add something to the file we added in the add test
String nl = System.getProperty( "line.separator" );
BufferedWriter bw =
new BufferedWriter( new FileWriter( fileSet.getBasedir() + File.separator + fileName, true ) );
bw.write( nl + nl + "A new change appended to file by the check-in command test" + nl );