Exemplo n.º 1
0
        public static void elements_get()
        {
            var m = new Matrix2(_incremented);

            m.Get(0, 0).Should().Be(0);
            m.Get(0, 1).Should().Be(1);
            m.Get(1, 0).Should().Be(2);
            m.Get(1, 1).Should().Be(3);
        }
Exemplo n.º 2
0
        public static void elements_get() {
            var m = new Matrix2(_incremented);

            m.Get(0, 0).Should().Be(0);
            m.Get(0, 1).Should().Be(1);
            m.Get(1, 0).Should().Be(2);
            m.Get(1, 1).Should().Be(3);
        }