changeset in /hg/pulseaudio: 2008-10-08 Omair Majid <omajid at redh...
Omair Majid
omajid at redhat.com
Wed Oct 8 12:27:47 PDT 2008
changeset 6ac2c3df7588 in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=6ac2c3df7588
description:
2008-10-08 Omair Majid <omajid at redhat.com>
* unittests/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLine.java
(testHasADefaultFormat): Also check that the line can be opened with the
default format.
diffstat:
1 file changed, 12 insertions(+), 4 deletions(-)
unittests/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLineTest.java | 16 +++++++---
diffs (45 lines):
diff -r 0a46fbaa018e -r 6ac2c3df7588 unittests/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLineTest.java
--- a/unittests/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLineTest.java Wed Oct 08 12:30:00 2008 -0400
+++ b/unittests/org/classpath/icedtea/pulseaudio/PulseAudioSourceDataLineTest.java Wed Oct 08 13:57:49 2008 -0400
@@ -36,8 +36,6 @@ exception statement from your version.
*/
package org.classpath.icedtea.pulseaudio;
-
-import static org.junit.Assert.assertNotNull;
import java.io.File;
import java.io.IOException;
@@ -138,9 +136,9 @@ public class PulseAudioSourceDataLineTes
selectedMixerInfo = info;
}
}
- assertNotNull(selectedMixerInfo);
+ Assert.assertNotNull(selectedMixerInfo);
mixer = AudioSystem.getMixer(selectedMixerInfo);
- assertNotNull(mixer);
+ Assert.assertNotNull(mixer);
if (mixer.isOpen()) {
mixer.close();
}
@@ -1029,10 +1027,20 @@ public class PulseAudioSourceDataLineTes
@Test
public void testHasADefaultFormat() throws LineUnavailableException {
+ System.out.println("This test checks that a SourceDataLine has "
+ + " a default format, and it can be opened with"
+ + " that format");
+
sourceDataLine = (SourceDataLine) mixer.getLine(new Line.Info(
SourceDataLine.class));
+
+ /* check that there is a default format */
Assert.assertNotNull(sourceDataLine.getFormat());
System.out.println(sourceDataLine.getFormat());
+
+ /* check that the line can be opened with the default format */
+ sourceDataLine.open();
+ sourceDataLine.close();
}
More information about the distro-pkg-dev
mailing list