Package sis.functiontest

Source Code of sis.functiontest.SerializationTest

package sis.functiontest;

import static org.junit.Assert.*;

import java.io.IOException;

import org.junit.Test;

import sis.studentinfo.CourseCatalog;


public class SerializationTest {

  @Test
  public void testLoadToNewVersion() throws ClassNotFoundException, IOException {
    final String filename = "FileKeeper/Catalog/CourseCatalogTest.testAddInObjType.txt";
    CourseCatalog catalog = new CourseCatalog();
    catalog.loadInObjType(filename);
    assertEquals(2, catalog.getSessions().size());
  }

}
TOP

Related Classes of sis.functiontest.SerializationTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.