Beispiel #1
0
        public void UnimplementedFunctionAssertions()
        {
            var c = new ConvolutionToolsBase <float>();

            Action act = () => c.Convolve((GenericLeafSubGrid <float>)null, null, null);

            act.Should().Throw <NotImplementedException>();

            act = () => c.Convolve((float[, ])null, null, null);
            act.Should().Throw <NotImplementedException>();
        }
Beispiel #2
0
        public void Creation()
        {
            var c = new ConvolutionToolsBase <float>();

            c.Should().NotBeNull();
        }