"funkytest",
"testBuildAssetMultipleFunctionsCallingEachOther",
AssetFormats.FUNCTION );
RepositoryAssetService repositoryAssetService = getRepositoryAssetService();
RuleAsset t1 = repositoryAssetService.loadRuleAsset( uuidt1 );
RuleContentText t1Content = new RuleContentText();
t1Content.content = "function void t1(){\n";
t1Content.content += " t2();\n";
t1Content.content += "}\n";
t1.content= t1Content;
repositoryAssetService.checkinVersion( t1 );
String uuidt2 = impl.createNewRule( "t2",
"",
"funkytest",
"testBuildAssetMultipleFunctionsCallingEachOther",
AssetFormats.FUNCTION );
RuleAsset t2 = repositoryAssetService.loadRuleAsset( uuidt2 );
RuleContentText t2Content = new RuleContentText();
t2Content.content = "function void t2(){\n";
t2Content.content += " t1();\n";
t2Content.content += "}\n";
t2.content = t2Content;
repositoryAssetService.checkinVersion( t2 );