public void GetClrTypes_should_return_ospace_types()
        {
            var model = new EdmModel(DataSpace.CSpace);
            var type1 = typeof(object);
            var tempQualifier1 = model.AddEntityType("A");

            tempQualifier1.Annotations.SetClrType(type1);
            var type = typeof(string);

            model.AddEntityType("B").Annotations.SetClrType(type);

            Assert.Equal(2, model.GetClrTypes().Count());
        }