diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2010-12-31 11:44:54 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-12-31 14:01:34 -0800 |
commit | 952a86b3adb7d3e50d020300b4c6b960bffd53d3 (patch) | |
tree | b59cdcac5bddf028a36b48330517c3b667cc899a /org.eclipse.jgit.test/tst-rsrc | |
parent | d9e07a574a946693e491668e0d94619bc5d886a5 (diff) | |
download | jgit-952a86b3adb7d3e50d020300b4c6b960bffd53d3.tar.gz jgit-952a86b3adb7d3e50d020300b4c6b960bffd53d3.zip |
Fix TestTranslationBundle
The test was never run from maven, because its name did not end
in a way that was recognized by the pom. After rename it failed
because it did not find its resources.
Rename test class and move resources to the resources folder
Change-Id: I74a7ef1373cd902e1d05ff6ea38f8648b5fc5700
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.jgit.test/tst-rsrc')
4 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle.properties b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle.properties new file mode 100644 index 0000000000..0e8cfc124a --- /dev/null +++ b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle.properties @@ -0,0 +1 @@ +goodMorning=Good morning {0}
\ No newline at end of file diff --git a/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle_de.properties b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle_de.properties new file mode 100644 index 0000000000..6b22bf66bc --- /dev/null +++ b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/GermanTranslatedBundle_de.properties @@ -0,0 +1 @@ +goodMorning=Guten Morgen {0}
\ No newline at end of file diff --git a/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/MissingPropertyBundle.properties b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/MissingPropertyBundle.properties new file mode 100644 index 0000000000..0e8cfc124a --- /dev/null +++ b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/MissingPropertyBundle.properties @@ -0,0 +1 @@ +goodMorning=Good morning {0}
\ No newline at end of file diff --git a/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/NonTranslatedBundle.properties b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/NonTranslatedBundle.properties new file mode 100644 index 0000000000..0e8cfc124a --- /dev/null +++ b/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/nls/NonTranslatedBundle.properties @@ -0,0 +1 @@ +goodMorning=Good morning {0}
\ No newline at end of file |