System.Reflection.Tests.AssemblyNameTests.Ctor_InvalidArchitecture_ThrowsFileLoadException C# (CSharp) Method

Ctor_InvalidArchitecture_ThrowsFileLoadException() private method

private Ctor_InvalidArchitecture_ThrowsFileLoadException ( string invalidName ) : void
invalidName string
return void
        public void Ctor_InvalidArchitecture_ThrowsFileLoadException(string invalidName)
        {
            string fullName = "Test, ProcessorArchitecture=" + invalidName;
            Assert.Throws<FileLoadException>(() => new AssemblyName(fullName));
        }