Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirralev authored and jaimecasero committed Aug 24, 2017
1 parent a750091 commit bcc319e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/gov/nist/javax/sdp/parser/SdpParserTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package test.gov.nist.javax.sdp.parser;

import gov.nist.javax.sdp.SessionDescriptionImpl;
import gov.nist.javax.sdp.fields.AttributeField;
import gov.nist.javax.sdp.parser.AttributeFieldParser;
import gov.nist.javax.sdp.parser.SDPAnnounceParser;

import java.io.File;
Expand Down Expand Up @@ -89,6 +91,12 @@ public void testWebRtcSdpParser() throws Exception {
assertNotNull(md);

}

public void testAttribEquals() throws Exception {
AttributeField f1 = new AttributeFieldParser("a=sendrecv").attributeField();
AttributeField f2 = new AttributeFieldParser("a=sendrecv").attributeField();
f1.equals(f2);
}

public void testSdpParser() throws Exception {
for (String sdpdata : sdpData) {
Expand Down

0 comments on commit bcc319e

Please sign in to comment.