1 /*
2  * This file was automatically generated by EvoSuite
3  * Fri Jan 12 13:39:21 GMT 2018
4  */
5 
6 package uk.ac.sanger.artemis.components.variant;
7 
8 import org.junit.Test;
9 import static org.junit.Assert.*;
10 import static org.evosuite.runtime.EvoAssertions.*;
11 import java.awt.datatransfer.Clipboard;
12 import java.util.List;
13 import org.evosuite.runtime.EvoRunner;
14 import org.evosuite.runtime.EvoRunnerParameters;
15 import org.junit.runner.RunWith;
16 import uk.ac.sanger.artemis.FeatureVector;
17 import uk.ac.sanger.artemis.Selection;
18 import uk.ac.sanger.artemis.components.variant.CDSFeature;
19 import uk.ac.sanger.artemis.components.variant.VCFRecord;
20 import uk.ac.sanger.artemis.components.variant.VariantBase;
21 import uk.ac.sanger.artemis.io.Range;
22 import uk.ac.sanger.artemis.io.RangeVector;
23 
24 @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true, useJEE = true)
25 public class VCFRecord_ESTest extends VCFRecord_ESTest_scaffolding {
26 
27   @Test(timeout = 4000)
test00()28   public void test00()  throws Throwable  {
29       Selection selection0 = new Selection((Clipboard) null);
30       RangeVector rangeVector0 = selection0.getSelectionRanges();
31       Range range0 = new Range(0);
32       rangeVector0.add(range0);
33       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, 8, 2692, "x#S");
34       short short0 = VCFRecord.checkSyn(cDSFeature0, 58, 'H');
35       assertEquals((short) (-1), short0);
36   }
37 
38   @Test(timeout = 4000)
test01()39   public void test01()  throws Throwable  {
40       Selection selection0 = new Selection((Clipboard) null);
41       RangeVector rangeVector0 = selection0.getSelectionRanges();
42       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, 55, 4468, "k]~h]8wj^S@");
43       short short0 = VCFRecord.checkSyn(cDSFeature0, 4468, 'G');
44       assertEquals((short) (-1), short0);
45   }
46 
47   @Test(timeout = 4000)
test02()48   public void test02()  throws Throwable  {
49       Clipboard clipboard0 = new Clipboard("U]");
50       Selection selection0 = new Selection(clipboard0);
51       RangeVector rangeVector0 = selection0.getSelectionRanges();
52       CDSFeature cDSFeature0 = new CDSFeature(true, rangeVector0, 0, 0, "P");
53       short short0 = VCFRecord.checkSyn(cDSFeature0, 0, '9');
54       assertEquals((short) (-1), short0);
55   }
56 
57   @Test(timeout = 4000)
test03()58   public void test03()  throws Throwable  {
59       // Undeclared exception!
60       try {
61         VCFRecord.parse("d{G|As\\9\"V0", 2686);
62         fail("Expecting exception: ArrayIndexOutOfBoundsException");
63 
64       } catch(ArrayIndexOutOfBoundsException e) {
65          //
66          // 1
67          //
68          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
69       }
70   }
71 
72   @Test(timeout = 4000)
test04()73   public void test04()  throws Throwable  {
74       VCFRecord vCFRecord0 = new VCFRecord();
75       vCFRecord0.setAlt("Failed to read sequence file");
76       // Undeclared exception!
77       try {
78         vCFRecord0.getSynFlag((List<CDSFeature>) null, 5);
79         fail("Expecting exception: NullPointerException");
80 
81       } catch(NullPointerException e) {
82          //
83          // no message in exception (getMessage() returned null)
84          //
85          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
86       }
87   }
88 
89   @Test(timeout = 4000)
test05()90   public void test05()  throws Throwable  {
91       VCFRecord vCFRecord0 = new VCFRecord();
92       vCFRecord0.setAlt("C[f)D]`");
93       String string0 = vCFRecord0.toString();
94       assertEquals("null\t0\tnull\tnull\tC[f)D]`\t0.0\tnull\tnull\tnull\t", string0);
95   }
96 
97   @Test(timeout = 4000)
test06()98   public void test06()  throws Throwable  {
99       VCFRecord vCFRecord0 = new VCFRecord();
100       vCFRecord0.setMarkAsNewStop(true);
101       boolean boolean0 = vCFRecord0.isMarkAsNewStop();
102       assertTrue(boolean0);
103   }
104 
105   @Test(timeout = 4000)
test07()106   public void test07()  throws Throwable  {
107       VCFRecord vCFRecord0 = new VCFRecord();
108       vCFRecord0.setRef("r}Pxr!n$FH");
109       String string0 = vCFRecord0.getRef();
110       assertEquals("r}Pxr!n$FH", string0);
111   }
112 
113   @Test(timeout = 4000)
test08()114   public void test08()  throws Throwable  {
115       VCFRecord vCFRecord0 = new VCFRecord();
116       vCFRecord0.setQuality(0.106F);
117       float float0 = vCFRecord0.getQuality();
118       assertEquals(0.106F, float0, 0.01F);
119   }
120 
121   @Test(timeout = 4000)
test09()122   public void test09()  throws Throwable  {
123       VCFRecord vCFRecord0 = new VCFRecord();
124       vCFRecord0.setPos(5);
125       int int0 = vCFRecord0.getPos();
126       assertEquals(5, int0);
127   }
128 
129   @Test(timeout = 4000)
test10()130   public void test10()  throws Throwable  {
131       VCFRecord vCFRecord0 = new VCFRecord();
132       vCFRecord0.setPos((-35));
133       int int0 = vCFRecord0.getPos();
134       assertEquals((-35), int0);
135   }
136 
137   @Test(timeout = 4000)
test11()138   public void test11()  throws Throwable  {
139       VCFRecord vCFRecord0 = new VCFRecord();
140       vCFRecord0.setInfo("iNx`m!ZR.");
141       String string0 = vCFRecord0.getInfo();
142       assertEquals("iNx`m!ZR.", string0);
143   }
144 
145   @Test(timeout = 4000)
test12()146   public void test12()  throws Throwable  {
147       VCFRecord vCFRecord0 = new VCFRecord();
148       vCFRecord0.setInfo("");
149       String string0 = vCFRecord0.getInfo();
150       assertEquals("", string0);
151   }
152 
153   @Test(timeout = 4000)
test13()154   public void test13()  throws Throwable  {
155       VCFRecord vCFRecord0 = new VCFRecord();
156       String string0 = vCFRecord0.getFormat();
157       assertNull(string0);
158   }
159 
160   @Test(timeout = 4000)
test14()161   public void test14()  throws Throwable  {
162       VCFRecord vCFRecord0 = new VCFRecord();
163       vCFRecord0.setFormat("File already exists named ");
164       String string0 = vCFRecord0.getFormat();
165       assertEquals("File already exists named ", string0);
166   }
167 
168   @Test(timeout = 4000)
test15()169   public void test15()  throws Throwable  {
170       VCFRecord vCFRecord0 = new VCFRecord();
171       String string0 = vCFRecord0.getFilter();
172       assertNull(string0);
173   }
174 
175   @Test(timeout = 4000)
test16()176   public void test16()  throws Throwable  {
177       VCFRecord vCFRecord0 = new VCFRecord();
178       vCFRecord0.setFilter(" ");
179       String string0 = vCFRecord0.getFilter();
180       assertEquals(" ", string0);
181   }
182 
183   @Test(timeout = 4000)
test17()184   public void test17()  throws Throwable  {
185       VCFRecord vCFRecord0 = new VCFRecord();
186       vCFRecord0.setFilter("");
187       String string0 = vCFRecord0.getFilter();
188       assertEquals("", string0);
189   }
190 
191   @Test(timeout = 4000)
test18()192   public void test18()  throws Throwable  {
193       VCFRecord vCFRecord0 = new VCFRecord();
194       vCFRecord0.setChrom("wwwcache");
195       String string0 = vCFRecord0.getChrom();
196       assertEquals("wwwcache", string0);
197   }
198 
199   @Test(timeout = 4000)
test19()200   public void test19()  throws Throwable  {
201       VCFRecord vCFRecord0 = new VCFRecord();
202       vCFRecord0.setAlt("C[f)D]`");
203       VariantBase variantBase0 = vCFRecord0.getAlt();
204       assertEquals("C[f)D]`", variantBase0.toString());
205   }
206 
207   @Test(timeout = 4000)
test20()208   public void test20()  throws Throwable  {
209       // Undeclared exception!
210       try {
211         VCFRecord.split((String) null, (String) null, 58);
212         fail("Expecting exception: NullPointerException");
213 
214       } catch(NullPointerException e) {
215          //
216          // no message in exception (getMessage() returned null)
217          //
218          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
219       }
220   }
221 
222   @Test(timeout = 4000)
test21()223   public void test21()  throws Throwable  {
224       // Undeclared exception!
225       try {
226         VCFRecord.split("", "", (-1255));
227         fail("Expecting exception: NegativeArraySizeException");
228 
229       } catch(NegativeArraySizeException e) {
230          //
231          // no message in exception (getMessage() returned null)
232          //
233          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
234       }
235   }
236 
237   @Test(timeout = 4000)
test22()238   public void test22()  throws Throwable  {
239       // Undeclared exception!
240       try {
241         VCFRecord.parse((String) null, 61);
242         fail("Expecting exception: NullPointerException");
243 
244       } catch(NullPointerException e) {
245          //
246          // no message in exception (getMessage() returned null)
247          //
248          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
249       }
250   }
251 
252   @Test(timeout = 4000)
test23()253   public void test23()  throws Throwable  {
254       // Undeclared exception!
255       try {
256         VCFRecord.parse("", (-206));
257         fail("Expecting exception: NegativeArraySizeException");
258 
259       } catch(NegativeArraySizeException e) {
260          //
261          // no message in exception (getMessage() returned null)
262          //
263          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
264       }
265   }
266 
267   @Test(timeout = 4000)
test24()268   public void test24()  throws Throwable  {
269       VCFRecord vCFRecord0 = new VCFRecord();
270       vCFRecord0.setFormat("fB{y[e4Z%x}RV;m&");
271       String[][] stringArray0 = new String[4][5];
272       vCFRecord0.setGenoTypeData(stringArray0);
273       // Undeclared exception!
274       try {
275         vCFRecord0.getFormatValueForSample(5);
276         fail("Expecting exception: ArrayIndexOutOfBoundsException");
277 
278       } catch(ArrayIndexOutOfBoundsException e) {
279          //
280          // 5
281          //
282          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
283       }
284   }
285 
286   @Test(timeout = 4000)
test25()287   public void test25()  throws Throwable  {
288       // Undeclared exception!
289       try {
290         VCFRecord.countOccurrences((String) null, 'b');
291         fail("Expecting exception: NullPointerException");
292 
293       } catch(NullPointerException e) {
294          //
295          // no message in exception (getMessage() returned null)
296          //
297          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
298       }
299   }
300 
301   @Test(timeout = 4000)
test26()302   public void test26()  throws Throwable  {
303       VCFRecord vCFRecord0 = new VCFRecord();
304       // Undeclared exception!
305       try {
306         vCFRecord0.containsInfoFlag("The ontology may not be null");
307         fail("Expecting exception: NullPointerException");
308 
309       } catch(NullPointerException e) {
310          //
311          // no message in exception (getMessage() returned null)
312          //
313       }
314   }
315 
316   @Test(timeout = 4000)
test27()317   public void test27()  throws Throwable  {
318       Selection selection0 = new Selection((Clipboard) null);
319       RangeVector rangeVector0 = selection0.getSelectionRanges();
320       Range range0 = new Range(17, 1825);
321       rangeVector0.add(range0);
322       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, 8, 2692, "x#S");
323       short short0 = VCFRecord.checkSyn(cDSFeature0, 58, 'H');
324       assertEquals((short)0, short0);
325   }
326 
327   @Test(timeout = 4000)
test28()328   public void test28()  throws Throwable  {
329       Selection selection0 = new Selection((Clipboard) null);
330       RangeVector rangeVector0 = selection0.getSelectionRanges();
331       Range range0 = new Range(74, 1825);
332       rangeVector0.add(range0);
333       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, 8, 2692, "x#S");
334       rangeVector0.add(range0);
335       short short0 = VCFRecord.checkSyn(cDSFeature0, 58, 'H');
336       assertEquals((short) (-1), short0);
337   }
338 
339   @Test(timeout = 4000)
test29()340   public void test29()  throws Throwable  {
341       Selection selection0 = new Selection((Clipboard) null);
342       RangeVector rangeVector0 = selection0.getSelectionRanges();
343       Range range0 = new Range(74, 1825);
344       rangeVector0.add(range0);
345       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, 8, 2692, "x#S");
346       short short0 = VCFRecord.checkSyn(cDSFeature0, 1825, 'H');
347       assertEquals((short) (-1), short0);
348   }
349 
350   @Test(timeout = 4000)
test30()351   public void test30()  throws Throwable  {
352       RangeVector rangeVector0 = new RangeVector();
353       CDSFeature cDSFeature0 = new CDSFeature(false, rangeVector0, (-655), (-655), (String) null);
354       short short0 = VCFRecord.checkSyn(cDSFeature0, 396, '5');
355       assertEquals((short) (-1), short0);
356   }
357 
358   @Test(timeout = 4000)
test31()359   public void test31()  throws Throwable  {
360       Range range0 = new Range((-3441), 21);
361       RangeVector rangeVector0 = new RangeVector(range0);
362       CDSFeature cDSFeature0 = new CDSFeature(true, rangeVector0, 1048576, 0, "bi");
363       short short0 = VCFRecord.checkSyn(cDSFeature0, 0, 'G');
364       assertEquals((short) (-1), short0);
365   }
366 
367   @Test(timeout = 4000)
test32()368   public void test32()  throws Throwable  {
369       VCFRecord vCFRecord0 = new VCFRecord();
370       // Undeclared exception!
371       try {
372         vCFRecord0.getSynFlag((FeatureVector) null, 3);
373         fail("Expecting exception: NullPointerException");
374 
375       } catch(NullPointerException e) {
376          //
377          // no message in exception (getMessage() returned null)
378          //
379          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
380       }
381   }
382 
383   @Test(timeout = 4000)
test33()384   public void test33()  throws Throwable  {
385       VCFRecord vCFRecord0 = new VCFRecord();
386       vCFRecord0.setFilter("");
387       vCFRecord0.appendFilter((String) null);
388   }
389 
390   @Test(timeout = 4000)
test34()391   public void test34()  throws Throwable  {
392       VCFRecord vCFRecord0 = new VCFRecord();
393       vCFRecord0.setFilter("z_X+|");
394       vCFRecord0.appendFilter("z_X+|");
395   }
396 
397   @Test(timeout = 4000)
test35()398   public void test35()  throws Throwable  {
399       VCFRecord vCFRecord0 = new VCFRecord();
400       String string0 = vCFRecord0.getSampleDataString();
401       assertEquals("", string0);
402   }
403 
404   @Test(timeout = 4000)
test36()405   public void test36()  throws Throwable  {
406       VCFRecord vCFRecord0 = new VCFRecord();
407       String[][] stringArray0 = new String[3][0];
408       vCFRecord0.setGenoTypeData(stringArray0);
409       String string0 = vCFRecord0.getSampleDataString();
410       assertEquals("\t\t", string0);
411   }
412 
413   @Test(timeout = 4000)
test37()414   public void test37()  throws Throwable  {
415       VCFRecord vCFRecord0 = new VCFRecord();
416       vCFRecord0.setFormat("iNx`m!ZR.");
417       String string0 = vCFRecord0.getFormatValueForSample("U1JSv<?iXLNF}nAN8", (-4293));
418       assertNull(string0);
419   }
420 
421   @Test(timeout = 4000)
test38()422   public void test38()  throws Throwable  {
423       VCFRecord vCFRecord0 = new VCFRecord();
424       vCFRecord0.setFormat("(azKu6e@hi{z*;OM");
425       // Undeclared exception!
426       try {
427         vCFRecord0.getFormatValueForSample("(azKu6e@hi{z*;OM", (-211));
428         fail("Expecting exception: NullPointerException");
429 
430       } catch(NullPointerException e) {
431          //
432          // no message in exception (getMessage() returned null)
433          //
434          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
435       }
436   }
437 
438   @Test(timeout = 4000)
test39()439   public void test39()  throws Throwable  {
440       VCFRecord vCFRecord0 = new VCFRecord();
441       String string0 = vCFRecord0.getFormatValueForSample("", 58);
442       assertNull(string0);
443   }
444 
445   @Test(timeout = 4000)
test40()446   public void test40()  throws Throwable  {
447       VCFRecord vCFRecord0 = new VCFRecord();
448       String string0 = vCFRecord0.getFormatValueForSample(0);
449       assertNull(string0);
450   }
451 
452   @Test(timeout = 4000)
test41()453   public void test41()  throws Throwable  {
454       VCFRecord vCFRecord0 = new VCFRecord();
455       vCFRecord0.setFormat("fB{y[e4Z%x}RV;m&");
456       // Undeclared exception!
457       try {
458         vCFRecord0.getFormatValueForSample(5);
459         fail("Expecting exception: NullPointerException");
460 
461       } catch(NullPointerException e) {
462          //
463          // no message in exception (getMessage() returned null)
464          //
465          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
466       }
467   }
468 
469   @Test(timeout = 4000)
test42()470   public void test42()  throws Throwable  {
471       VCFRecord vCFRecord0 = new VCFRecord();
472       vCFRecord0.setInfo("");
473       boolean boolean0 = vCFRecord0.containsInfoFlag("");
474       assertTrue(boolean0);
475   }
476 
477   @Test(timeout = 4000)
test43()478   public void test43()  throws Throwable  {
479       VCFRecord vCFRecord0 = new VCFRecord();
480       // Undeclared exception!
481       try {
482         vCFRecord0.getInfoValue("..");
483         fail("Expecting exception: NullPointerException");
484 
485       } catch(NullPointerException e) {
486          //
487          // no message in exception (getMessage() returned null)
488          //
489       }
490   }
491 
492   @Test(timeout = 4000)
test44()493   public void test44()  throws Throwable  {
494       String[] stringArray0 = VCFRecord.split("\t", "\t", 2686);
495       assertNotNull(stringArray0);
496   }
497 
498   @Test(timeout = 4000)
test45()499   public void test45()  throws Throwable  {
500       // Undeclared exception!
501       try {
502         VCFRecord.split("Could not find field while serializing", "vp>hwwQE4L@?c", 0);
503         fail("Expecting exception: ArrayIndexOutOfBoundsException");
504 
505       } catch(ArrayIndexOutOfBoundsException e) {
506          //
507          // 0
508          //
509          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
510       }
511   }
512 
513   @Test(timeout = 4000)
test46()514   public void test46()  throws Throwable  {
515       int int0 = VCFRecord.countOccurrences("rootVisible", 'l');
516       assertEquals(1, int0);
517   }
518 
519   @Test(timeout = 4000)
test47()520   public void test47()  throws Throwable  {
521       int int0 = VCFRecord.countOccurrences("&tJ", 'v');
522       assertEquals(0, int0);
523   }
524 
525   @Test(timeout = 4000)
test48()526   public void test48()  throws Throwable  {
527       VCFRecord vCFRecord0 = new VCFRecord();
528       boolean boolean0 = vCFRecord0.isMarkAsNewStop();
529       assertFalse(boolean0);
530   }
531 
532   @Test(timeout = 4000)
test49()533   public void test49()  throws Throwable  {
534       VCFRecord vCFRecord0 = new VCFRecord();
535       String[] stringArray0 = vCFRecord0.getFormatValues("T-\"v7i?C");
536       assertNull(stringArray0);
537   }
538 
539   @Test(timeout = 4000)
test50()540   public void test50()  throws Throwable  {
541       VCFRecord vCFRecord0 = new VCFRecord();
542       vCFRecord0.setInfo("PASS");
543       vCFRecord0.containsInfoFlag("");
544       String string0 = vCFRecord0.getInfoValue("");
545       assertNull(string0);
546   }
547 
548   @Test(timeout = 4000)
test51()549   public void test51()  throws Throwable  {
550       VCFRecord vCFRecord0 = new VCFRecord();
551       String string0 = vCFRecord0.getID();
552       assertNull(string0);
553   }
554 
555   @Test(timeout = 4000)
test52()556   public void test52()  throws Throwable  {
557       VCFRecord vCFRecord0 = new VCFRecord();
558       String string0 = vCFRecord0.getRef();
559       assertNull(string0);
560   }
561 
562   @Test(timeout = 4000)
test53()563   public void test53()  throws Throwable  {
564       VCFRecord vCFRecord0 = new VCFRecord();
565       vCFRecord0.setID("");
566   }
567 
568   @Test(timeout = 4000)
test54()569   public void test54()  throws Throwable  {
570       VCFRecord vCFRecord0 = new VCFRecord();
571       float float0 = vCFRecord0.getQuality();
572       assertEquals(0.0F, float0, 0.01F);
573   }
574 
575   @Test(timeout = 4000)
test55()576   public void test55()  throws Throwable  {
577       VCFRecord vCFRecord0 = new VCFRecord();
578       VariantBase variantBase0 = vCFRecord0.getAlt();
579       assertNull(variantBase0);
580   }
581 
582   @Test(timeout = 4000)
test56()583   public void test56()  throws Throwable  {
584       VCFRecord vCFRecord0 = new VCFRecord();
585       int int0 = vCFRecord0.getPos();
586       assertEquals(0, int0);
587   }
588 
589   @Test(timeout = 4000)
test57()590   public void test57()  throws Throwable  {
591       VCFRecord vCFRecord0 = new VCFRecord();
592       vCFRecord0.setAlt("c?Dd4pL[tLM4|38^");
593       // Undeclared exception!
594       try {
595         vCFRecord0.getSynFlag((FeatureVector) null, 3);
596         fail("Expecting exception: NullPointerException");
597 
598       } catch(NullPointerException e) {
599          //
600          // no message in exception (getMessage() returned null)
601          //
602          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
603       }
604   }
605 
606   @Test(timeout = 4000)
test58()607   public void test58()  throws Throwable  {
608       VCFRecord vCFRecord0 = new VCFRecord();
609       String[][] stringArray0 = vCFRecord0.getGenoTypeData();
610       assertNull(stringArray0);
611   }
612 
613   @Test(timeout = 4000)
test59()614   public void test59()  throws Throwable  {
615       VCFRecord vCFRecord0 = new VCFRecord();
616       String string0 = vCFRecord0.getInfo();
617       assertNull(string0);
618   }
619 
620   @Test(timeout = 4000)
test60()621   public void test60()  throws Throwable  {
622       VCFRecord vCFRecord0 = new VCFRecord();
623       // Undeclared exception!
624       try {
625         vCFRecord0.appendFilter("z_X+|");
626         fail("Expecting exception: NullPointerException");
627 
628       } catch(NullPointerException e) {
629          //
630          // no message in exception (getMessage() returned null)
631          //
632          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
633       }
634   }
635 
636   @Test(timeout = 4000)
test61()637   public void test61()  throws Throwable  {
638       VCFRecord vCFRecord0 = new VCFRecord();
639       String[][] stringArray0 = new String[8][6];
640       vCFRecord0.setGenoTypeData(stringArray0);
641       String[][] stringArray1 = vCFRecord0.getGenoTypeData();
642       assertSame(stringArray1, stringArray0);
643   }
644 
645   @Test(timeout = 4000)
test62()646   public void test62()  throws Throwable  {
647       VCFRecord vCFRecord0 = new VCFRecord();
648       // Undeclared exception!
649       try {
650         vCFRecord0.toString();
651         fail("Expecting exception: NullPointerException");
652 
653       } catch(NullPointerException e) {
654          //
655          // no message in exception (getMessage() returned null)
656          //
657          verifyException("uk.ac.sanger.artemis.components.variant.VCFRecord", e);
658       }
659   }
660 
661   @Test(timeout = 4000)
test63()662   public void test63()  throws Throwable  {
663       VCFRecord vCFRecord0 = new VCFRecord();
664       String string0 = vCFRecord0.getChrom();
665       assertNull(string0);
666   }
667 }
668