Skip to content

SumOfMultiples : add hint to @Ignore annotations #496

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions exercises/sum-of-multiples/src/test/java/SumOfMultiplesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void testSumOfMultiplesOf3and4UpToOne() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf3and5UpToFour() {

int[] set = {
Expand All @@ -31,7 +31,7 @@ public void testSumOfMultiplesOf3and5UpToFour() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf3and5UpToTen() {

int[] set = {
Expand All @@ -44,7 +44,7 @@ public void testSumOfMultiplesOf3and5UpToTen() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf3and5UpToOneHundred() {

int[] set = {
Expand All @@ -57,7 +57,7 @@ public void testSumOfMultiplesOf3and5UpToOneHundred() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf3and5UpToOneThousand() {

int[] set = {
Expand All @@ -70,7 +70,7 @@ public void testSumOfMultiplesOf3and5UpToOneThousand() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf7and13and17UpToTwenty() {

int[] set = {
Expand All @@ -84,7 +84,7 @@ public void testSumOfMultiplesOf7and13and17UpToTwenty() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf4and6UpToFifteen() {

int[] set = {
Expand All @@ -97,7 +97,7 @@ public void testSumOfMultiplesOf4and6UpToFifteen() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf5and6and8UpToOneHundredFifty() {

int[] set = {
Expand All @@ -111,7 +111,7 @@ public void testSumOfMultiplesOf5and6and8UpToOneHundredFifty() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf5and25UpToTwoHundredSeventyFive() {

int[] set = {
Expand All @@ -124,7 +124,7 @@ public void testSumOfMultiplesOf5and25UpToTwoHundredSeventyFive() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOf43and47UpToTenThousand() {

int[] set = {
Expand All @@ -137,7 +137,7 @@ public void testSumOfMultiplesOf43and47UpToTenThousand() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOfOneUpToOneHundred() {

int[] set = {
Expand All @@ -149,7 +149,7 @@ public void testSumOfMultiplesOfOneUpToOneHundred() {
}

@Test
@Ignore
@Ignore("Remove to run test")
public void testSumOfMultiplesOfNoneUpToTenThousand() {

int[] set = {};
Expand Down