Re-enable the relevant tests

This commit is contained in:
Joel Thibault 2014-02-14 12:34:08 -05:00
parent c8a5007c85
commit cb7ad01202
2 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ public class RecalibrationReportUnitTest {
return new RecalDatum((long)nObservations, (double)nErrors, (byte)qual); return new RecalDatum((long)nObservations, (double)nErrors, (byte)qual);
} }
@Test(enabled = false) @Test
public void testOutput() { public void testOutput() {
final int length = 100; final int length = 100;

View File

@ -89,7 +89,7 @@ public class RepeatCovariatesUnitTest {
} }
@Test(enabled = true) @Test
public void testFindNumberOfRepetitions() { public void testFindNumberOfRepetitions() {
// First, test logic to compute number of repetitions of a substring on a given string. // First, test logic to compute number of repetitions of a substring on a given string.
int result = GATKVariantContextUtils.findNumberofRepetitions("AC".getBytes(), "ACAC".getBytes(), true); int result = GATKVariantContextUtils.findNumberofRepetitions("AC".getBytes(), "ACAC".getBytes(), true);
@ -142,7 +142,7 @@ public class RepeatCovariatesUnitTest {
* Build synthetic reads with random content made up of tandem repeats, record computed Repeat Unit and # repeats and see if * Build synthetic reads with random content made up of tandem repeats, record computed Repeat Unit and # repeats and see if
* they match with read context * they match with read context
*/ */
@Test(enabled = false) @Test
public void testManyObservations() { public void testManyObservations() {
final int NUM_UNITS = 10; final int NUM_UNITS = 10;
final int MAX_REPEAT_UNIT_LENGTH = RAC.MAX_STR_UNIT_LENGTH; final int MAX_REPEAT_UNIT_LENGTH = RAC.MAX_STR_UNIT_LENGTH;