protected override void Context()
        {
            IAliasCreator aliasCreator = new AliasCreator();

            _context = A.Fake <IMoBiContext>();
            sut      = new ObjectPathCreatorAtReaction(new ObjectPathFactory(aliasCreator), aliasCreator, _context);
        }
Exemple #2
0
 public SBMLInformation()
 {
     AliasCreator                 = new AliasCreator();
     MobiDimension                = new Dictionary <string, IDimension>();
     NotificationMessages         = new List <NotificationMessage>();
     DummyNameContainerDictionary = new Dictionary <string, string>();
     MoleculeInformation          = new List <MoleculeInformation>();
 }
Exemple #3
0
 protected override void Context()
 {
     sut = new AliasCreator(
         new[] { '+', '-', '*', '\\', '/', '^', '.', ',', '<', '>', '=', '(', ')', '[', ']', '{', '}', '\'', '\"', '|', '&', ';', '¬', ' ', '\t', '\n', '\r' },
         '_');
 }