Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/09 12:29:13 (15 years ago)
Author:
epitzer
Message:

Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/UnitTests/UseCases.cs

    r1822 r1823  
    1010using System.IO;
    1111using System.Reflection;
    12 using HeuristicLab.Persistence.Default.Decomposers.Storable;
     12using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    1313using HeuristicLab.Persistence.Interfaces;
    1414using HeuristicLab.Persistence.Default.Xml.Primitive;
    15 using HeuristicLab.Persistence.Default.Decomposers;
     15using HeuristicLab.Persistence.Default.CompositeSerializers;
    1616using HeuristicLab.Persistence.Auxiliary;
    1717using System.Text.RegularExpressions;
     
    432432      XmlGenerator.Serialize(sdt, tempFile,
    433433        new Configuration(new XmlFormat(),
    434           new List<IFormatter> { new String2XmlFormatter() },
    435           new List<IDecomposer> {
    436             new StorableDecomposer(),
    437             new Number2StringDecomposer() }));
     434          new List<IPrimitiveSerializer> { new String2XmlSerializer() },
     435          new List<ICompositeSerializer> {
     436            new StorableSerializer(),
     437            new Number2StringSerializer() }));
    438438      object o = XmlParser.Deserialize(tempFile);
    439439      Assert.AreEqual(
Note: See TracChangeset for help on using the changeset viewer.