@@ -232,11 +232,19 @@ public void BuildBindingsTest2 (ApplePlatform platform)
232232 Assert . That ( resourceBundle , Does . Exist , "Bundle existence" ) ;
233233 }
234234
235- [ TestCase ( "iOS" , "monotouch" ) ]
236- [ TestCase ( "tvOS" , "monotouch" ) ]
237- [ TestCase ( "macOS" , "xammac" ) ]
238- [ TestCase ( "MacCatalyst" , "monotouch" ) ]
239- public void BuildBundledResources ( string platform , string prefix )
235+ [ TestCase ( "iOS" , "monotouch" , true ) ]
236+ [ TestCase ( "tvOS" , "monotouch" , true ) ]
237+ [ TestCase ( "macOS" , "xammac" , true ) ]
238+ [ TestCase ( "MacCatalyst" , "monotouch" , true ) ]
239+ [ TestCase ( "iOS" , "monotouch" , false ) ]
240+ [ TestCase ( "tvOS" , "monotouch" , false ) ]
241+ [ TestCase ( "macOS" , "xammac" , false ) ]
242+ [ TestCase ( "MacCatalyst" , "monotouch" , false ) ]
243+ [ TestCase ( "iOS" , "monotouch" , null ) ]
244+ [ TestCase ( "tvOS" , "monotouch" , null ) ]
245+ [ TestCase ( "macOS" , "xammac" , null ) ]
246+ [ TestCase ( "MacCatalyst" , "monotouch" , null ) ]
247+ public void BuildBundledResources ( string platform , string prefix , bool ? bundleOriginalResources )
240248 {
241249 Configuration . IgnoreIfIgnoredPlatform ( platform ) ;
242250 var assemblyName = "BundledResources" ;
@@ -877,9 +885,6 @@ public void LibraryWithResources (ApplePlatform platform, bool? bundleOriginalRe
877885 var platformPrefix = ( platform == ApplePlatform . MacOSX ) ? "xammac" : "monotouch" ;
878886 if ( actualBundleOriginalResources ) {
879887 expectedResources = new string [ ] {
880- $ "__{ platformPrefix } _content_A.ttc",
881- $ "__{ platformPrefix } _content_B.otf",
882- $ "__{ platformPrefix } _content_C.ttf",
883888 $ "__{ platformPrefix } _item_AtlasTexture_Archer__Attack.atlas_sarcher__attack__0001.png",
884889 $ "__{ platformPrefix } _item_AtlasTexture_Archer__Attack.atlas_sarcher__attack__0002.png",
885890 $ "__{ platformPrefix } _item_AtlasTexture_Archer__Attack.atlas_sarcher__attack__0003.png",
0 commit comments