Generate a buzzword-laden catch phrase.
()
| 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! |
nothing calls this directly
no test coverage detected