implement GH #700: PropertyFileConfiguration preserve comments.

This commit is contained in:
aaron0x
2015-09-11 14:22:00 +08:00
parent fee347ec6a
commit 334a7267c7
4 changed files with 283 additions and 64 deletions

View File

@@ -27,7 +27,10 @@ public:
virtual ~PropertyFileConfigurationTest();
void testLoad();
void testLoadEmpty();
void testLoadWithPreserveComment();
void testSave();
void testLoadSaveWithPreserveComment();
void setUp();
void tearDown();
@@ -36,6 +39,8 @@ public:
private:
virtual Poco::Util::AbstractConfiguration* allocConfiguration() const;
void testLoad(bool preserveComment);
};