public void LoadFrom_String_ShouldMimicSystem()
        {
            var ass = System.Reflection.Assembly.GetExecutingAssembly();
            var sut = new AssemblyFactory();

            //  Act.
            var res = sut.LoadFrom(ass.Location);

            //  Assert.
            res.FullName.Should().Be(ass.FullName);
        }