File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/test/java/io/simplelocalize/cli/command Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1313
1414import java .nio .file .Path ;
1515import java .util .Collections ;
16+ import java .util .List ;
1617
1718import static org .mockito .ArgumentMatchers .any ;
1819import static org .mockito .Mockito .times ;
@@ -58,6 +59,7 @@ public void shouldUploadTwelveFiles() throws Exception
5859 .withPath (Path .of ("./junit/download-test/values-{lang}/strings.xml" ))
5960 .withFormat ("android" )
6061 .withOptions (Collections .emptyList ())
62+ .withTags (List .of ())
6163 .build (),
6264 "languageKey" , "path"
6365 )
@@ -85,6 +87,7 @@ public void shouldUploadOneFileWithLangTemplate() throws Exception
8587 .withFormat ("android" )
8688 .withLanguageKey ("en" )
8789 .withOptions (Collections .emptyList ())
90+ .withTags (List .of ())
8891 .build (),
8992 "path"
9093 )
@@ -112,6 +115,7 @@ public void shouldUploadOneFileWithOnlyTranslationKeys() throws Exception
112115 .withFormat ("android" )
113116 .withLanguageKey ("en" )
114117 .withOptions (Collections .emptyList ())
118+ .withTags (List .of ())
115119 .build ()
116120 )
117121 );
@@ -155,6 +159,7 @@ public void shouldUploadOneFile() throws Exception
155159 .withFormat ("android" )
156160 .withLanguageKey ("en" )
157161 .withOptions (Collections .emptyList ())
162+ .withTags (List .of ())
158163 .build (),
159164 "path"
160165 )
You can’t perform that action at this time.
0 commit comments