mdbs99 / james

James is a collection of object-oriented Pascal primitives for Lazarus and Delphi
MIT License
53 stars 20 forks source link

Change TJamesTestsTemplateFile class to encapsulate the XML #36

Closed mdbs99 closed 7 years ago

mdbs99 commented 7 years ago

Let's change TJamesTestsTemplateFile class to encapsulate and work at template.xml file. The code below should be removed from Unit tests.

  Template := TXMLComponent.Create(TJamesTestsTemplateFile.New.Stream);
  try
    Node :=
      Template
        .Document
        .DocumentElement
        .FindNode(Self.ClassName)
        .FindNode('files')
        .ChildNodes
        .Item[0];  
    ...
mdbs99 commented 7 years ago

This issue will be treated in #58.