Beispiel #1
0
 public void Setup()
 {
     context   = new UTinyContext();
     registry  = context.Registry;
     caretaker = context.Caretaker;
 }
Beispiel #2
0
 public void Teardown()
 {
     context   = null;
     registry  = null;
     caretaker = null;
 }
 public UTinyContext()
 {
     m_VersionStorage = new UTinyVersionStorage();
     Registry         = new UTinyRegistry(m_VersionStorage);
     Caretaker        = new UTinyCaretaker(m_VersionStorage);
 }