Home
last modified time | relevance | path

Searched refs:INSTANCE (Results 1 – 25 of 902) sorted by relevance

12345678910>>...37

/external/guava/android/guava-tests/test/com/google/common/collect/
DEmptyImmutableTableTest.java30 private static final ImmutableTable<Character, Integer, String> INSTANCE = ImmutableTable.of(); field in EmptyImmutableTableTest
34 return ImmutableSet.of(INSTANCE); in getTestInstances()
38 assertEquals(0, INSTANCE.hashCode()); in testHashCode()
46 .addEqualityGroup(INSTANCE, HashBasedTable.create(), TreeBasedTable.create()) in testEqualsObject()
54 .addEqualityGroup(INSTANCE) in testEqualsObjectNullValues()
60 assertEquals("{}", INSTANCE.toString()); in testToString()
64 assertEquals(0, INSTANCE.size()); in testSize()
68 assertNull(INSTANCE.get('a', 1)); in testGet()
72 assertTrue(INSTANCE.isEmpty()); in testIsEmpty()
76 assertEquals(ImmutableSet.of(), INSTANCE.cellSet()); in testCellSet()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DEmptyImmutableTableTest.java30 private static final ImmutableTable<Character, Integer, String> INSTANCE = ImmutableTable.of(); field in EmptyImmutableTableTest
34 return ImmutableSet.of(INSTANCE); in getTestInstances()
38 assertEquals(0, INSTANCE.hashCode()); in testHashCode()
46 .addEqualityGroup(INSTANCE, HashBasedTable.create(), TreeBasedTable.create()) in testEqualsObject()
54 .addEqualityGroup(INSTANCE) in testEqualsObjectNullValues()
60 assertEquals("{}", INSTANCE.toString()); in testToString()
64 assertEquals(0, INSTANCE.size()); in testSize()
68 assertNull(INSTANCE.get('a', 1)); in testGet()
72 assertTrue(INSTANCE.isEmpty()); in testIsEmpty()
76 assertEquals(ImmutableSet.of(), INSTANCE.cellSet()); in testCellSet()
[all …]
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DBlankSpanTest.java32 assertThat(BlankSpan.INSTANCE.getContext()).isEqualTo(SpanContext.INVALID); in hasInvalidContextAndDefaultSpanOptions()
33 assertThat(BlankSpan.INSTANCE.getOptions().isEmpty()).isTrue(); in hasInvalidContextAndDefaultSpanOptions()
47 BlankSpan.INSTANCE.putAttribute( in doNotCrash()
49 BlankSpan.INSTANCE.addAttributes(attributes); in doNotCrash()
50 BlankSpan.INSTANCE.addAttributes(multipleAttributes); in doNotCrash()
51 BlankSpan.INSTANCE.addAnnotation("MyAnnotation"); in doNotCrash()
52 BlankSpan.INSTANCE.addAnnotation("MyAnnotation", attributes); in doNotCrash()
53 BlankSpan.INSTANCE.addAnnotation("MyAnnotation", multipleAttributes); in doNotCrash()
54 BlankSpan.INSTANCE.addAnnotation(Annotation.fromDescription("MyAnnotation")); in doNotCrash()
55 BlankSpan.INSTANCE.addNetworkEvent(NetworkEvent.builder(NetworkEvent.Type.SENT, 1L).build()); in doNotCrash()
[all …]
DTracerTest.java51 assertThat(noopTracer.getCurrentSpan()).isEqualTo(BlankSpan.INSTANCE); in defaultGetCurrentSpan()
61 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in getCurrentSpan_WithSpan()
68 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in getCurrentSpan_WithSpan()
74 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapRunnable()
87 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapRunnable()
94 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapCallable()
108 assertThat(noopTracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in wrapCallable()
118 assertThat(noopTracer.spanBuilder(SPAN_NAME).startSpan()).isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithName()
129 .isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithParentAndName()
140 .isSameAs(BlankSpan.INSTANCE); in defaultSpanBuilderWithRemoteParent_NullParent()
[all …]
DSpanBuilderTest.java52 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startScopedSpan()
60 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startScopedSpan()
65 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndRun()
74 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndRun()
80 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndCall()
92 assertThat(tracer.getCurrentSpan()).isSameAs(BlankSpan.INSTANCE); in startSpanAndCall()
102 assertThat(spanBuilder.startSpan()).isSameAs(BlankSpan.INSTANCE); in doNotCrash_NoopImplementation()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
DVoidTypeTest.java59 assertEquals(false, ResolvedVoidType.INSTANCE.isArray()); in testIsArray()
64 assertEquals(false, ResolvedVoidType.INSTANCE.isPrimitive()); in testIsPrimitive()
69 assertEquals(false, ResolvedVoidType.INSTANCE.isNull()); in testIsNull()
74 assertEquals(false, ResolvedVoidType.INSTANCE.isReference()); in testIsReference()
79 assertEquals(false, ResolvedVoidType.INSTANCE.isReferenceType()); in testIsReferenceType()
84 assertEquals(true, ResolvedVoidType.INSTANCE.isVoid()); in testIsVoid()
89 assertEquals(false, ResolvedVoidType.INSTANCE.isTypeVariable()); in testIsTypeVariable()
94 …assertThrows(UnsupportedOperationException.class, () -> ResolvedVoidType.INSTANCE.asReferenceType(… in testAsReferenceTypeUsage()
99 …assertThrows(UnsupportedOperationException.class, () -> ResolvedVoidType.INSTANCE.asTypeParameter(… in testAsTypeParameter()
104 … assertThrows(UnsupportedOperationException.class, () -> ResolvedVoidType.INSTANCE.asArrayType()); in testAsArrayTypeUsage()
[all …]
DNullTypeTest.java59 assertEquals(false, NullType.INSTANCE.isArray()); in testIsArray()
64 assertEquals(false, NullType.INSTANCE.isPrimitive()); in testIsPrimitive()
69 assertEquals(true, NullType.INSTANCE.isNull()); in testIsNull()
74 assertEquals(true, NullType.INSTANCE.isReference()); in testIsReference()
79 assertEquals(false, NullType.INSTANCE.isReferenceType()); in testIsReferenceType()
84 assertEquals(false, NullType.INSTANCE.isVoid()); in testIsVoid()
89 assertEquals(false, NullType.INSTANCE.isTypeVariable()); in testIsTypeVariable()
94 … assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asReferenceType()); in testAsReferenceTypeUsage()
99 … assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asTypeParameter()); in testAsTypeParameter()
104 assertThrows(UnsupportedOperationException.class, () -> NullType.INSTANCE.asArrayType()); in testAsArrayTypeUsage()
[all …]
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/
DSmaliElementTypes.java38 public static final SmaliFileElementType FILE = SmaliFileElementType.INSTANCE;
39 public static final SmaliClassElementType CLASS = SmaliClassElementType.INSTANCE;
40 public static final SmaliFieldElementType FIELD = SmaliFieldElementType.INSTANCE;
41 public static final SmaliMethodElementType METHOD = SmaliMethodElementType.INSTANCE;
42 …tic final SmaliClassStatementElementType CLASS_STATEMENT = SmaliClassStatementElementType.INSTANCE;
43 … final SmaliMethodPrototypeElementType METHOD_PROTOTYPE = SmaliMethodPrototypeElementType.INSTANCE;
44 …final SmaliMethodParamListElementType METHOD_PARAM_LIST = SmaliMethodParamListElementType.INSTANCE;
45 … final SmaliMethodParameterElementType METHOD_PARAMETER = SmaliMethodParameterElementType.INSTANCE;
46 public static final SmaliAnnotationElementType ANNOTATION = SmaliAnnotationElementType.INSTANCE;
47 …ic static final SmaliModifierListElementType MODIFIER_LIST = SmaliModifierListElementType.INSTANCE;
[all …]
/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/function/
DMethodInvokersFunctionTest.java46 assertEquals(INSTANCE.getString(), func.apply(INSTANCE)); in testApply0Arg()
52 assertThrows(CustomUncheckedException.class, () -> func.apply(INSTANCE)); in testApply0ArgThrowsUnchecked()
73 …final Set<Object> set1 = invokers.stream().map(i -> i.apply(MethodFixtures.INSTANCE)).collect(Coll… in testFindAndInvoke()
74 … assertEquals(new HashSet<>(Arrays.asList(INSTANCE.getString(), INSTANCE.getString2())), set1); in testFindAndInvoke()
75 … final Set<Object> set2 = Stream.of(INSTANCE).map(invokers.get(0)).collect(Collectors.toSet()); in testFindAndInvoke()
76 … final Set<Object> set3 = Stream.of(INSTANCE).map(invokers.get(1)).collect(Collectors.toSet()); in testFindAndInvoke()
78 … assertEquals(new HashSet<>(Arrays.asList(INSTANCE.getString(), INSTANCE.getString2())), set2); in testFindAndInvoke()
91 map.computeIfAbsent(INSTANCE, MethodInvokers.asFunction(getMethodForGetString())); in testMapComputeIfAbsent()
92 assertEquals(INSTANCE.getString(), map.get(INSTANCE)); in testMapComputeIfAbsent()
/external/apache-commons-io/src/main/java/org/apache/commons/io/
DFileCleaner.java43 private static final FileCleaningTracker INSTANCE = new FileCleaningTracker(); field in FileCleaner
70 INSTANCE.exitWhenFinished(); in exitWhenFinished()
82 return INSTANCE; in getInstance()
94 return INSTANCE.getTrackCount(); in getTrackCount()
109 INSTANCE.track(file, marker); in track()
125 INSTANCE.track(file, marker, deleteStrategy); in track()
140 INSTANCE.track(path, marker); in track()
156 INSTANCE.track(path, marker, deleteStrategy); in track()
/external/guava/guava/src/com/google/common/collect/
DReverseNaturalOrdering.java30 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering(); field in ReverseNaturalOrdering
51 return NaturalOrdering.INSTANCE.max(a, b); in min()
56 return NaturalOrdering.INSTANCE.max(a, b, c, rest); in min()
61 return NaturalOrdering.INSTANCE.max(iterator); in min()
66 return NaturalOrdering.INSTANCE.max(iterable); in min()
71 return NaturalOrdering.INSTANCE.min(a, b); in max()
76 return NaturalOrdering.INSTANCE.min(a, b, c, rest); in max()
81 return NaturalOrdering.INSTANCE.min(iterator); in max()
86 return NaturalOrdering.INSTANCE.min(iterable); in max()
91 return INSTANCE; in readResolve()
/external/guava/android/guava/src/com/google/common/collect/
DReverseNaturalOrdering.java30 static final ReverseNaturalOrdering INSTANCE = new ReverseNaturalOrdering(); field in ReverseNaturalOrdering
51 return NaturalOrdering.INSTANCE.max(a, b); in min()
56 return NaturalOrdering.INSTANCE.max(a, b, c, rest); in min()
61 return NaturalOrdering.INSTANCE.max(iterator); in min()
66 return NaturalOrdering.INSTANCE.max(iterable); in min()
71 return NaturalOrdering.INSTANCE.min(a, b); in max()
76 return NaturalOrdering.INSTANCE.min(a, b, c, rest); in max()
81 return NaturalOrdering.INSTANCE.min(iterator); in max()
86 return NaturalOrdering.INSTANCE.min(iterable); in max()
91 return INSTANCE; in readResolve()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/utils/
DLogger.java11 private static LottieLogger INSTANCE = new LogcatLogger(); field in Logger
14 Logger.INSTANCE = instance; in setInstance()
18 INSTANCE.debug(message); in debug()
22 INSTANCE.debug(message, exception); in debug()
26 INSTANCE.warning(message); in warning()
30 INSTANCE.warning(message, exception); in warning()
34 INSTANCE.error(message, exception); in error()
/external/opencensus-java/api/src/main/java/io/opencensus/tags/
DNoopTags.java49 return NoopTagger.INSTANCE; in getNoopTagger()
58 return NoopTagContextBuilder.INSTANCE; in getNoopTagContextBuilder()
67 return NoopTagContext.INSTANCE; in getNoopTagContext()
72 return NoopTagPropagationComponent.INSTANCE; in getNoopTagPropagationComponent()
80 return NoopTagContextBinarySerializer.INSTANCE; in getNoopTagContextBinarySerializer()
113 static final Tagger INSTANCE = new NoopTagger(); field in NoopTags.NoopTagger
150 static final TagContextBuilder INSTANCE = new NoopTagContextBuilder(); field in NoopTags.NoopTagContextBuilder
178 static final TagContext INSTANCE = new NoopTagContext(); field in NoopTags.NoopTagContext
189 static final TagPropagationComponent INSTANCE = new NoopTagPropagationComponent(); field in NoopTags.NoopTagPropagationComponent
199 static final TagContextBinarySerializer INSTANCE = new NoopTagContextBinarySerializer(); field in NoopTags.NoopTagContextBinarySerializer
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCharacterPropertiesImpl.java39 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
42 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
45 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
46 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
50 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
65 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
68 UBiDiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
76 EmojiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
96 int src = UCharacterProperty.INSTANCE.getSource(prop); in getIntPropInclusions()
125 int src = UCharacterProperty.INSTANCE.getSource(prop); in getInclusionsForProperty()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCharacterPropertiesImpl.java37 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
40 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
43 UCharacterProperty.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
44 UCharacterProperty.INSTANCE.upropsvec_addPropertyStarts(incl); in getInclusionsForSource()
48 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
63 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
66 UBiDiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
74 EmojiProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
94 int src = UCharacterProperty.INSTANCE.getSource(prop); in getIntPropInclusions()
123 int src = UCharacterProperty.INSTANCE.getSource(prop); in getInclusionsForProperty()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DRecordUtils.java109 CreateMutableSumDouble.INSTANCE, in createMutableAggregation()
110 CreateMutableSumLong.INSTANCE, in createMutableAggregation()
114 CreateMutableCount.INSTANCE, in createMutableAggregation()
115 CreateMutableDistribution.INSTANCE, in createMutableAggregation()
120 CreateMutableLastValueDouble.INSTANCE, in createMutableAggregation()
121 CreateMutableLastValueLong.INSTANCE, in createMutableAggregation()
125 AggregationDefaultFunction.INSTANCE); in createMutableAggregation()
172 private static final CreateMutableSumDouble INSTANCE = new CreateMutableSumDouble();
182 private static final CreateMutableSumLong INSTANCE = new CreateMutableSumLong();
191 private static final CreateMutableCount INSTANCE = new CreateMutableCount();
[all …]
/external/gson/gson/src/test/java/com/google/gson/
DJsonNullTest.java30 MoreAsserts.assertEqualsAndHashCode(new JsonNull(), JsonNull.INSTANCE); in testEqualsAndHashcode()
31 MoreAsserts.assertEqualsAndHashCode(JsonNull.INSTANCE, JsonNull.INSTANCE); in testEqualsAndHashcode()
37 assertSame(JsonNull.INSTANCE, a.deepCopy()); in testDeepCopy()
38 assertSame(JsonNull.INSTANCE, JsonNull.INSTANCE.deepCopy()); in testDeepCopy()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DToolConfig.java14 private static CLDRConfig INSTANCE = null; field in ToolConfig
17 if (INSTANCE == null) { in getToolInstance()
18 INSTANCE = CLDRConfig.getInstance(); in getToolInstance()
19 …if (INSTANCE.getEnvironment() != Environment.LOCAL) { // verify we aren't in the server, unittests… in getToolInstance()
23 return INSTANCE; in getToolInstance()
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/util/
DTestPUAs.java28 static final PuaHelper INSTANCE = new PuaHelper(); field in TestPUAs
35 for (final String locale : INSTANCE.collatorFactory.getAvailable()) { in collatorProvider()
36 CLDRFile cldrFile = INSTANCE.collatorFactory.make(locale, false); // don't need resolved in collatorProvider()
37 Matcher m = INSTANCE.COLLATOR_TYPE.matcher(""); in collatorProvider()
60 CLDRFile cldrFile = INSTANCE.collatorFactory.make(locale, false); // don't need resolved in TestCollatorPUA()
62 assertFalse(INSTANCE.IS_PUA.containsSome(rules), () -> { in TestCollatorPUA()
63 …cale+":"+type+" contained PUAs: " + UnicodeSet.fromAll(rules).retainAll(INSTANCE.IS_PUA).toString(… in TestCollatorPUA()
/external/opencensus-java/api/src/main/java/io/opencensus/stats/
DAggregation.java70 private static final Sum INSTANCE = new AutoValue_Aggregation_Sum(); field in Aggregation.Sum
79 return INSTANCE; in create()
104 private static final Count INSTANCE = new AutoValue_Aggregation_Count(); field in Aggregation.Count
113 return INSTANCE; in create()
141 private static final Mean INSTANCE = new AutoValue_Aggregation_Mean(); field in Aggregation.Mean
150 return INSTANCE; in create()
217 private static final LastValue INSTANCE = new AutoValue_Aggregation_LastValue(); field in Aggregation.LastValue
226 return INSTANCE; in create()
/external/apache-commons-io/src/test/java/org/apache/commons/io/output/
DProxyCollectionWriterTest.java42 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendChar1()
59 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendChar2()
76 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequence1()
93 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequence2()
110 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequenceIntInt1()
127 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequenceIntInt2()
144 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnClose1()
160 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnClose2()
176 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnFlush1()
192 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnFlush2()
[all …]
DTeeWriterTest.java43 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendChar1()
59 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendChar2()
75 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequence1()
91 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequence2()
107 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequenceIntInt1()
123 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnAppendCharSequenceIntInt2()
139 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnClose1()
154 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnClose2()
169 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnFlush1()
184 final Writer badW = BrokenWriter.INSTANCE; in testArrayIOExceptionOnFlush2()
[all …]
/external/auto/common/src/main/java/com/google/auto/common/
DMoreTypes.java67 private static final TypeEquivalence INSTANCE = new TypeEquivalence(); field in MoreTypes.TypeEquivalence
101 return TypeEquivalence.INSTANCE; in equivalence()
169 private static final EqualVisitor INSTANCE = new EqualVisitor(); field in MoreTypes.EqualVisitor
323 return a.accept(EqualVisitor.INSTANCE, p); in equal()
366 private static final HashVisitor INSTANCE = new HashVisitor(); field in MoreTypes.HashVisitor
458 return mirror == null ? 0 : mirror.accept(HashVisitor.INSTANCE, visiting); in hash()
468 type.accept(ReferencedTypes.INSTANCE, elements); in referencedTypes()
474 private static final ReferencedTypes INSTANCE = new ReferencedTypes(); field in MoreTypes.ReferencedTypes
522 return typeMirror.accept(AsElementVisitor.INSTANCE, null); in asElement()
526 private static final AsElementVisitor INSTANCE = new AsElementVisitor(); field in MoreTypes.AsElementVisitor
[all …]
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DMethodDescriptorTest.java143 .setRequestMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
144 .setResponseMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
155 .setRequestMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
156 .setResponseMarshaller(StringMarshaller.INSTANCE) in toBuilderTest()
165 IntegerMarshaller.INSTANCE, in toBuilderTest()
166 IntegerMarshaller.INSTANCE).build(); in toBuilderTest()
169 assertSame(IntegerMarshaller.INSTANCE, md2.getRequestMarshaller()); in toBuilderTest()
170 assertSame(IntegerMarshaller.INSTANCE, md2.getResponseMarshaller()); in toBuilderTest()
182 .setRequestMarshaller(StringMarshaller.INSTANCE) in toStringTest()
183 .setResponseMarshaller(StringMarshaller.INSTANCE) in toStringTest()

12345678910>>...37