protected void InitializeContext()
 {
     var contextMappings = new EntityMappingStore();
     var rmp = new ReflectionMappingProvider();
     rmp.AddMappingsForAssembly(contextMappings, typeof(LinqToSparqlTests).Assembly);
     Context = new MockContext(contextMappings);
 }
        protected void InitializeContext()
        {
            var rmp = new ReflectionMappingProvider();

            rmp.AddMappingsForAssembly(EntityMappingStore.Instance, typeof(LinqToSparqlTests).Assembly);
            Context = new MockContext();
        }