コード例 #1
0
        public void Creation_WithCache()
        {
            var cache   = new TRexSpatialMemoryCache(100, 1000, 0.5);
            var context = cache.LocateOrCreateContext(Guid.NewGuid(), GridDataType.All, "Creation_WithCache", TimeSpan.FromHours(1));

            var req = new SurfaceElevationPatchRequestViaLocalCompute(cache, context);

            req.Should().NotBeNull();
        }
コード例 #2
0
        public void Creation()
        {
            var req = new SurfaceElevationPatchRequestViaLocalCompute();

            req.Should().NotBeNull();
        }