ClearBreakpoints() public method

public ClearBreakpoints ( ) : void
return void
        public void clear_breakpoints()
        {
            var specification = new Specification();
            var breakpoint1 = new Breakpoint("1", null);
            var breakpoint2 = new Breakpoint("2", null);
            specification.Breakpoints = new[] {breakpoint1, breakpoint2,};

            specification.ClearBreakpoints();

            specification.Breakpoints.Any().ShouldBeFalse();
        }