Summary

Test suite

Test case 1

  1: Qualifier qualifier0 = new Qualifier("|YZ", "|YZ");
  2: boolean boolean0 = MatchPanel.isMatchTag(qualifier0);
  3: assertFalse(boolean0);

Test case 2

  1: MatchPanel matchPanel0 = new MatchPanel((Feature) null, (DocumentEntry) null);
  2: QualifierVector qualifierVector0 = new QualifierVector();
  3: matchPanel0.updateFromQualifiers(qualifierVector0, (Feature) null);

Test case 3

  1: MatchPanel matchPanel0 = new MatchPanel((Feature) null, (DocumentEntry) null);
  2: matchPanel0.getGeneNameList();
  3: assertTrue(matchPanel0.isEmpty());

Test case 4

  1: String string0 = MatchPanel.getDescription();
  2: assertEquals("Ortholog/Paralog/Similarity", string0);

Test case 5

  1: GenbankStreamFeature genbankStreamFeature0 = new GenbankStreamFeature();
  2: Feature feature0 = new Feature(genbankStreamFeature0);
  3: MatchPanel matchPanel0 = new MatchPanel(feature0, (DocumentEntry) null);
  4: matchPanel0.updateFromFeature(feature0);
  5: assertTrue(matchPanel0.isEmpty());

Test case 6

  1: boolean boolean0 = MatchPanel.isMatchTag("paralogous_to");
  2: assertTrue(boolean0);

Test case 7

  1: boolean boolean0 = MatchPanel.isClusterTag("T)}:D");
  2: assertFalse(boolean0);

Test case 8

  1: boolean boolean0 = MatchPanel.isClusterTag("orthologous_to");
  2: assertTrue(boolean0);

Test case 9

  1: SimpleEntryInformation simpleEntryInformation0 = (SimpleEntryInformation)SimpleEntryInformation.getDefaultEntryInformation();
  2: GenbankDocumentEntry genbankDocumentEntry0 = new GenbankDocumentEntry(simpleEntryInformation0);
  3: MatchPanel matchPanel0 = new MatchPanel((Feature) null, genbankDocumentEntry0);
  4: matchPanel0.getMatchQualifiers();
  5: assertTrue(matchPanel0.isEmpty());

Test case 10

  1: SimpleEntryInformation simpleEntryInformation0 = (SimpleEntryInformation)SimpleEntryInformation.getDefaultEntryInformation();
  2: MSPcrunchDocumentEntry mSPcrunchDocumentEntry0 = new MSPcrunchDocumentEntry(simpleEntryInformation0);
  3: GenbankDocumentEntry genbankDocumentEntry0 = new GenbankDocumentEntry(simpleEntryInformation0, mSPcrunchDocumentEntry0, false);
  4: MatchPanel matchPanel0 = new MatchPanel((Feature) null, genbankDocumentEntry0);
  5: boolean boolean0 = matchPanel0.isEmpty();
  6: assertTrue(boolean0);

Test case 11

  1: boolean boolean0 = MatchPanel.isMatchTag("|YZ");
  2: assertFalse(boolean0);

Test case 12

  1: MatchPanel matchPanel0 = new MatchPanel((Feature) null, (DocumentEntry) null);
  2: matchPanel0.getGeneNameList(true);
  3: assertTrue(matchPanel0.isEmpty());

Test case 13

  1: MatchPanel.isClusterTag((String) null);

Test case 14

  1: MatchPanel.isMatchTag((String) null);

Test case 15

  1: MatchPanel.isMatchTag((Qualifier) null);

Test case 16

  1: SimpleEntryInformation simpleEntryInformation0 = (SimpleEntryInformation)SimpleEntryInformation.getDefaultEntryInformation();
  2: MSPcrunchDocumentEntry mSPcrunchDocumentEntry0 = new MSPcrunchDocumentEntry(simpleEntryInformation0);
  3: GenbankDocumentEntry genbankDocumentEntry0 = new GenbankDocumentEntry(simpleEntryInformation0, mSPcrunchDocumentEntry0, false);
  4: MatchPanel matchPanel0 = new MatchPanel((Feature) null, genbankDocumentEntry0);
  5: assertTrue(matchPanel0.isEmpty());
  6: 
  7: matchPanel0.setEmpty(false);
  8: boolean boolean0 = matchPanel0.isEmpty();
  9: assertFalse(boolean0);

Source Code

  1: No source found for uk.ac.sanger.artemis.components.genebuilder.ortholog.MatchPanel

EvoSuite Parameters

  • TARGET_CLASS: uk.ac.sanger.artemis.components.genebuilder.ortholog.MatchPanel
  • Size: 16
  • Length: 36
  • criterion: LINE;BRANCH;EXCEPTION;WEAKMUTATION;OUTPUT;METHOD;METHODNOEXCEPTION;CBRANCH
  • Coverage: 0.44772580886153646
  • BranchCoverage: 0.15584415584415584
  • MethodCoverage: 0.9230769230769231
  • OutputCoverage: 0.34375


Back to Overview