public void lineUnixFeedWithInterpolation()
throws IOException, AssemblyFormattingException
{
final PojoConfigSource cfg = getPojoConfigSource();
InputStreamTransformer fileSetTransformers = getFileSetTransformers( cfg, true, "unix" );
InputStream fud = fileSetTransformers.transform( dummyResource(), payload( "This is a test for project: ${artifactId} @artifactId@.") );
assertEquals( "This is a test for project: anArtifact anArtifact.", readResultStream( fud ) );
}
private MavenProject createBasicMavenProject()