public static IEnumerable AssetReplacerToolReplaceValues()
 {
     return(new List <Tuple <string, AssetRef, AssetRef, string> >()
     {
         new Tuple <string, AssetRef, AssetRef, string>(GeneratedFileDefault(), AssetRef.New(1, "pipote"), AssetRef.New(2, "popote"), GeneratedFileDefault()),
         new Tuple <string, AssetRef, AssetRef, string>(GeneratedFileDefault(), ref1, AssetRef.New(2, "popote"), GeneratedFileWithRef1(AssetRef.New(2, "popote"))),
         new Tuple <string, AssetRef, AssetRef, string>(GeneratedFileDefault(), ref2, AssetRef.New(2, "popote"), GeneratedFileWithRef2(AssetRef.New(2, "popote"))),
         new Tuple <string, AssetRef, AssetRef, string>(GeneratedFileDefault(), ref3, AssetRef.New(2, "popote"), GeneratedFileWithRef3(AssetRef.New(2, "popote"))),
     });
 }