Example #1
0
        public void LoadFromStreamHasEmptyLocation()
        {
            Assembly assembly = new TestStreamLoadContext().LoadFromAssemblyName(new AssemblyName("TinyAssembly"));
            string location = assembly.Location;

            Assert.NotNull(location);
            Assert.Empty(location);
        }
Example #2
0
        public void LoadFromStreamHasEmptyLocation()
        {
            Assembly assembly = new TestStreamLoadContext().LoadFromAssemblyName(new AssemblyName("TinyAssembly"));
            string   location = assembly.Location;

            Assert.NotNull(location);
            Assert.Empty(location);
        }
Example #3
0
        public void LoadFromStream_Location_IsEmpty()
        {
            Assembly assembly = new TestStreamLoadContext().LoadFromAssemblyName(new AssemblyName("TinyAssembly"));

            Assert.Empty(assembly.Location);
        }
Example #4
0
 public void LoadFromStream_Location_IsEmpty()
 {
     Assembly assembly = new TestStreamLoadContext().LoadFromAssemblyName(new AssemblyName("TinyAssembly"));
     Assert.Empty(assembly.Location);
 }