Exemplo n.º 1
0
        public void AreRowColumns(string expected, RowColumnsSize rowColumnsSize)
        {
            var fluentRowColumns = new FluentRowColumns();

            fluentRowColumns.WithRowColumnsSize(rowColumnsSize);

            var classname = fluentRowColumns.Class(classProvider);

            Assert.Equal(expected, classname);
        }
Exemplo n.º 2
0
        public void AreBreakpoints_OnAll(string expected, RowColumnsSize rowColumnsSize, Breakpoint breakpoint)
        {
            var fluentRowColumns = new FluentRowColumns();

            fluentRowColumns.WithRowColumnsSize(rowColumnsSize);

            if (breakpoint != Breakpoint.None)
            {
                fluentRowColumns.WithBreakpoint(breakpoint);
            }

            var classname = fluentRowColumns.Class(classProvider);

            Assert.Equal(expected, classname);
        }