Skip to content

Commit

Permalink
Rename Test methods (googleapis#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
geri-m committed Nov 2, 2018
1 parent 052eab5 commit aeac516
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void subtestSetSlugHeader(HttpHeaders headers, String expectedValue, Stri
*/
@SuppressWarnings("unchecked")
@Test
public void testAtomFeedParser() throws Exception {
public void testAtomFeedUsingCustomizedParser() throws Exception {
XmlPullParser parser = Xml.createParser();
// Wired. Both, the InputStream for the FeedParser and the XPP need to be set (?)
parser.setInput(new StringReader(SAMPLE_FEED));
Expand Down Expand Up @@ -132,15 +132,15 @@ public void testAtomFeedParser() throws Exception {
}

/**
* Manuel tests of a constant string to see if the data structure can be parsed in the regular way
* and get the same result.
* Tests of a constant string to see if the data structure can be parsed using the standard
* method {@link Xml#parseElement}
*
* The purpose of this test is to assert, if the parsed elements are correctly parsed using a
* {@link AtomFeedParser}.
*/
@SuppressWarnings("unchecked")
@Test
public void testAtomFeedParserRegualar() throws Exception {
public void testAtomFeedUsingStandardParser() throws Exception {
Feed feed = new Feed();
XmlPullParser parser = Xml.createParser();
parser.setInput(new StringReader(SAMPLE_FEED));
Expand Down

0 comments on commit aeac516

Please sign in to comment.