public void CleanUp()
 {
     _repo = null;
     _context.Dispose();
 }
 public void Init()
 {
     _log     = LogManager.GetLogger(typeof(MataPelajaranRepositoryUnitTest));
     _context = new SQLiteContext();
     _repo    = new MataPelajaranRepository(_context, _log);
 }