-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ProgressBar - fixed incorrect throw of out of range exception when se…
…tting the MaxValue property. fixes #34
- Loading branch information
1 parent
091bbb6
commit ba45f2f
Showing
5 changed files
with
140 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
sources/ConsoleTools/ConsoleTools.Tests/Spinners/ProgressBarTests/MaxValueTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// ConsoleTools | ||
// Copyright (C) 2017-2018 Dust in the Wind | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
using System; | ||
using DustInTheWind.ConsoleTools.Spinners; | ||
using NUnit.Framework; | ||
|
||
namespace DustInTheWind.ConsoleTools.Tests.Spinners.ProgressBarTests | ||
{ | ||
[TestFixture] | ||
public class MaxValueTests | ||
{ | ||
[Test] | ||
public void MinValue_is_10_set_MaxValue_to_12_succeeds() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MinValue = 10 }; | ||
|
||
progressBar.MaxValue = 12; | ||
|
||
Assert.That(progressBar.MaxValue, Is.EqualTo(12)); | ||
} | ||
|
||
[Test] | ||
public void MinValue_is_10_set_MaxValue_to_10_succeeds() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MinValue = 10 }; | ||
|
||
progressBar.MaxValue = 10; | ||
|
||
Assert.That(progressBar.MaxValue, Is.EqualTo(10)); | ||
} | ||
|
||
[Test] | ||
public void MinValue_is_10_set_MaxValue_to_8_throws() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MinValue = 10 }; | ||
|
||
Assert.Throws<ArgumentOutOfRangeException>(() => | ||
{ | ||
progressBar.MaxValue = 8; | ||
}); | ||
} | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
sources/ConsoleTools/ConsoleTools.Tests/Spinners/ProgressBarTests/MinValueTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// ConsoleTools | ||
// Copyright (C) 2017-2018 Dust in the Wind | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
using System; | ||
using DustInTheWind.ConsoleTools.Spinners; | ||
using NUnit.Framework; | ||
|
||
namespace DustInTheWind.ConsoleTools.Tests.Spinners.ProgressBarTests | ||
{ | ||
[TestFixture] | ||
public class MinValueTests | ||
{ | ||
[Test] | ||
public void MaxValue_is_10_set_MinValue_to_8_succeeds() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MaxValue = 10 }; | ||
|
||
progressBar.MinValue = 8; | ||
|
||
Assert.That(progressBar.MinValue, Is.EqualTo(8)); | ||
} | ||
|
||
[Test] | ||
public void MaxValue_is_10_set_MinValue_to_10_succeeds() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MaxValue = 10 }; | ||
|
||
progressBar.MinValue = 10; | ||
|
||
Assert.That(progressBar.MinValue, Is.EqualTo(10)); | ||
} | ||
|
||
[Test] | ||
public void MaxValue_is_10_set_MinValue_to_12_throws() | ||
{ | ||
ProgressBar progressBar = new ProgressBar { MaxValue = 10 }; | ||
|
||
Assert.Throws<ArgumentOutOfRangeException>(() => | ||
{ | ||
progressBar.MinValue = 12; | ||
}); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters