Mono.Cecil.Tests.BaseTestFixture.TestIL C# (CSharp) Method

TestIL() public static method

public static TestIL ( string file, Action test, bool verify = true, bool readOnly = false, Type symbolReaderProvider = null, Type symbolWriterProvider = null, IAssemblyResolver assemblyResolver = null, bool applyWindowsRuntimeProjections = false ) : void
file string
test Action
verify bool
readOnly bool
symbolReaderProvider System.Type
symbolWriterProvider System.Type
assemblyResolver IAssemblyResolver
applyWindowsRuntimeProjections bool
return void
        public static void TestIL(string file, Action<ModuleDefinition> test, bool verify = true, bool readOnly = false, Type symbolReaderProvider = null, Type symbolWriterProvider = null, IAssemblyResolver assemblyResolver = null, bool applyWindowsRuntimeProjections = false)
        {
            Run (new ILTestCase (file, test, verify, readOnly, symbolReaderProvider, symbolWriterProvider, assemblyResolver, applyWindowsRuntimeProjections));
        }