System.Reflection.Tests.ManifestResourceInfoTests.ResourceLocation C# (CSharp) Method

ResourceLocation() private method

private ResourceLocation ( ) : void
return void
        public void ResourceLocation()
        {
            Assembly assembly = typeof(ManifestResourceInfoTests).GetTypeInfo().Assembly;
            ManifestResourceInfo manifestResourceInfo = assembly.GetManifestResourceInfo("ResourceTextFile.txt");
            Assert.Equal("Embedded, ContainedInManifestFile", manifestResourceInfo.ResourceLocation.ToString());
        }
    }