Searched refs:FormattedText (Results 1 – 5 of 5) sorted by relevance
28 …private Iterator<FormattedText> applyPrintSettings(List<ArgumentMatcher> matchers, PrintSettings p… in applyPrintSettings()29 List<FormattedText> out = new LinkedList<FormattedText>(); in applyPrintSettings()33 out.add(new FormattedText(((ContainsExtraTypeInfo) matcher).toStringWithType())); in applyPrintSettings()35 out.add(new FormattedText(MatcherToString.toString(matcher))); in applyPrintSettings()
11 class FormattedText { class15 public FormattedText(String text) { in FormattedText() method in FormattedText
70 if (value instanceof FormattedText) { in print()71 return (((FormattedText) value).getText()); in print()
51 TEST_F(CommentTextTest, FormattedText) { in TEST_F() argument
41 assertThat(print(new FormattedText("formatted"))).isEqualTo("formatted"); in prints_values()