OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:classUnderTest
(Results
1 - 3
of
3
) sorted by null
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
CommentParsingSteps.java
252
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(position - 1);
253
assertEquals(false,
classUnderTest
.getComment().isPresent());
258
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(position - 1);
259
assertThat(
classUnderTest
.getComment().get().getContent(), is(expectedContent));
264
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(position - 1);
265
assertThat(
classUnderTest
.getAllContainedComments().size(), is(expectedCount));
271
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(position - 1);
272
assertThat(
classUnderTest
.getOrphanComments().size(), is(expectedCount));
277
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(classPosition - 1);
278
Comment commentUnderTest =
classUnderTest
.getOrphanComments().get(commentPosition - 1)
[
all
...]
ParsingSteps.java
130
TypeDeclaration<?>
classUnderTest
= compilationUnit.getType(classPosition - 1);
131
FieldDeclaration fieldUnderTest = getMemberByTypeAndPosition(
classUnderTest
, fieldPosition - 1,
/external/protobuf/java/core/src/test/java/com/google/protobuf/
LiteralByteStringTest.java
59
protected String
classUnderTest
;
66
classUnderTest
= "LiteralByteString";
74
assertEquals(
classUnderTest
+ " should match type exactly",
classUnderTest
, actualClassName);
86
assertTrue(
classUnderTest
+ " must capture the right bytes", stillEqual);
95
assertTrue(
classUnderTest
+ " must capture the right bytes", stillEqual);
96
assertFalse(
classUnderTest
+ " must have exhausted the itertor", iter.hasNext());
113
assertTrue(
classUnderTest
+ " must capture the right bytes as Bytes", stillEqual);
114
assertEquals(
classUnderTest
+ " iterable character count", referenceBytes.length, j);
118
assertEquals(
classUnderTest
+ " must have the expected size", referenceBytes.length
[
all
...]
Completed in 245 milliseconds