Added test functionality (getting list of bundles with translations).

This commit is contained in:
Prominence
2016-06-23 16:09:19 +03:00
committed by Prominence
parent 9d7c146f99
commit fe06a6d5d3
21 changed files with 131 additions and 3 deletions
@@ -0,0 +1,11 @@
package by.prominence.translations
class Bundle {
String name
List<File> propertiesList = new ArrayList<>()
public void addPropertyFile(File file) {
propertiesList.add(file)
}
}
@@ -0,0 +1,8 @@
package by.prominence.translations
class BundleProperties {
Bundle bundle
Properties properties
}