| Home >> All >> com >> jguild >> jrpm >> [ test Javadoc ] |
com.jguild.jrpm.test: Javadoc index of package com.jguild.jrpm.test.
Package Samples:
com.jguild.jrpm.test
Classes:
StreamGobbler: This class reads an input stream in an extra thread. This is used for running external programms out of java so that stdout and stderr are not blocking the process from work. If the stream is closed by Runtime the gobbler will also die. Usage: Process proc = Runtime.getRuntime().exec(command); // any error message? StreamGobbler errorGobbler = new StreamGobbler(rpmProc.getErrorStream(), System.err); // any output? StreamGobbler outputGobbler = new StreamGobbler(rpmProc.getInputStream(), System.out); // kick them off errorGobbler.start(); outputGobbler.start();
NativeRPMTest: Test case to compare jRPM against an installed instance of rpm.
RPMFileParsingTest: Unit Test for parsing RPM files.
AllTests: All tests for jRPM
| Home | Contact Us | Privacy Policy | Terms of Service |