public void testProjectIO() throws IOException, SequenceFormatException, DuplicateIDException {
File f1 = new File("IOTest.prx"); //$NON-NLS-1$
File f2 = new File("IOTest2.prx"); //$NON-NLS-1$
Task t = pm.getProbeDesignTask(false,true, null, new DefaultNamingScheme(), new GoodFairAcceptor(),new BestQualitySelector(),new DefaultProbeDesigner(new GreedyTagAllocator()),new DefaultTSSPairDesigner(new DefaultTSSConstructor()),new StreamErrorHandler(System.err,true));
t.run();
TagAllocationTable tat1 = pm.getProject().getTagAllocationTable();
new ProjectXMLIOTask(pm,null,new FileWriter(f1)).run();
new ProjectXMLIOTask(pm,null,new FileReader(f1)).run();