public void createSourceForSource() throws Exception {
File file = folder.newFile("file");
put(file, "Hello1, world!", "Hello2, world!", "Hello3, world!");
ProcessScript<StringBuilder> process = process("testing", driver(file.getName()), dummy());
FileResourceManipulator manipulator = new FileResourceManipulator(profile(), new ParameterList());
SourceDriver<StringBuilder> driver = manipulator.createSourceForSource(process);
try {
driver.prepare();
test(driver, "Hello1, world!", "Hello2, world!", "Hello3, world!");