// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. namespace System.Data.Entity.Spatial { using Moq; using Xunit; public class DbSpatialServicesTests { [Fact] public void NativeTypesAvailable_returns_true() { Assert.True( new Mock { CallBase = true }.Object.NativeTypesAvailable); } } }