public void AllTest() { IFile textFile = FactoryProvider.getFactory(PersitenseTypes.FILE).Create(FileTypes.txt); Student newStudent = textFile.Create(student); Student newStudent2 = textFile.Create(student2); Assert.AreEqual(newStudent.Name, textFile.All()[0].Name); Assert.AreEqual(newStudent2.Name, textFile.All()[1].Name); }