MCPcopy Create free account
hub / github.com/DiUS/java-faker / catchPhrase

Method catchPhrase

src/main/java/com/github/javafaker/Company.java:48–52  ·  view source on GitHub ↗

Generate a buzzword-laden catch phrase.

()

Source from the content-addressed store, hash-verified

46 * Generate a buzzword-laden catch phrase.
47 */
48 public String catchPhrase() {
49 @SuppressWarnings("unchecked")
50 List<List<String>> catchPhraseLists = (List<List<String>>) faker.fakeValuesService().fetchObject("company.buzzwords");
51 return joinSampleOfEachList(catchPhraseLists, " ");
52 }
53
54 /**
55 * When a straight answer won't do, BS to the rescue!

Callers

nothing calls this directly

Calls 3

joinSampleOfEachListMethod · 0.95
fetchObjectMethod · 0.80
fakeValuesServiceMethod · 0.80

Tested by

no test coverage detected