Skip to content

Commit 750299c

Browse files
authored
Removed System.out.printlns and other useless bits. (#1632)
1 parent 64d2e15 commit 750299c

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

src/test/java/net/datafaker/providers/base/CredentialsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,5 @@ void userIdWithParameter() {
139139

140140
uid = faker.credentials().userId("");
141141
assertThat(uid).isEmpty();
142-
System.out.println(uid);
143142
}
144143
}

src/test/java/net/datafaker/providers/base/NameTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,6 @@ void testTitle() {
8686
assertThat(name.title()).matches("(\\w+\\.?( )?){3}");
8787
}
8888

89-
@Test
90-
void test() {
91-
var faker = new BaseFaker(new Locale("id"));
92-
System.out.println(faker.name().name());
93-
}
94-
9589
@Nested
9690
class NameInGreekTest {
9791

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package net.datafaker.providers.entertainment;
22

3-
import net.datafaker.Faker;
4-
53
import java.util.Collection;
64
import java.util.List;
75

@@ -15,9 +13,4 @@ protected Collection<TestSpec> providerListTest() {
1513
TestSpec.of(severance::character, "severance.characters")
1614
);
1715
}
18-
19-
public static void main(String[] args) {
20-
Faker f = new Faker();
21-
System.out.println(f.severance().character());
22-
}
2316
}

0 commit comments

Comments
 (0)