manager object constructor test

This commit is contained in:
Marco Procaccini 2024-03-25 17:54:34 +01:00
parent 2007b96858
commit 2a1299b15e
3 changed files with 8 additions and 2 deletions

View File

@ -6,5 +6,11 @@ public class App{
public static void main (String[] args)
{
//create here the CSV and XML managers object to parse and sync the XML with the CSV file
CsvManager csvManager = new CsvManager();
XmlManager xmlManager = new XmlManager();
}
}

View File

@ -8,7 +8,7 @@ public class CsvManager implements VreRemPubInterface {
public CsvManager()
{
System.out.println("CSV manager created!");
}

View File

@ -9,7 +9,7 @@ public class XmlManager implements VreRemPubInterface {
//constructor
public XmlManager()
{
System.out.println("XML manager created!");
}