xamarin-macios/tests/cecil-tests
Rolf Bjarne Kvinge 87d04ac331
[src/mtouch] Put implementation assemblies in a per-platform directory (#10169)
Currently we put the implementation assemblies for all Xamarin.iOS platforms
in the same directory. This makes it impossible to have different
implementations for the same assembly in different platforms: in particular,
we're going to want a special version of Xamarin.iOS.dll for Mac Catalyst
(that will just have type forwarders into Xamarin.MacCatalyst.dll), that that
assembly will go into the Mac Catalyst-specific directory of implementation
assemblies.
2020-11-27 18:53:25 +01:00
..
EnumTest.cs [tests][cecil] Check that error-based enum values don't have availability attributes (#9737) 2020-09-30 15:15:18 -04:00
Helper.cs [src/mtouch] Put implementation assemblies in a per-platform directory (#10169) 2020-11-27 18:53:25 +01:00
Makefile [tests] Port cecil-tests to new-style csproj. (#8663) 2020-05-25 14:47:20 +02:00
README.md [tests] Add cecil-based unit tests (#7825) 2020-02-10 17:23:12 -05:00
TaskAssemblyTests.cs [Xcode12] Bring xcode 12 changes into main. 2020-09-23 16:05:22 -04:00
Test.cs [tests][cecil] Check for absence of `[NoX]` (Unavailable) in platform assemblies. Fix #4835 (#9686) 2020-09-30 07:56:48 -04:00
cecil-tests.csproj [tests][cecil] Check for absence of `[NoX]` (Unavailable) in platform assemblies. Fix #4835 (#9686) 2020-09-30 07:56:48 -04:00

README.md

Cecil-based Tests

Even with the huge variety of tests that we have there's still a few things that are hard to test properly. Some of them can be tested by analyzing the assemblies (IL or metadata). So here we are...