Skip to content

Commit

Permalink
test[protocol]: generation test
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysunxiao committed Jul 28, 2024
1 parent c31a3fe commit 35b8ac9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public void generateAllProtocols() throws IOException {
generateLanguages.add(CodeLanguage.Java);
generateLanguages.add(CodeLanguage.Kotlin);
generateLanguages.add(CodeLanguage.Scala);
generateLanguages.add(CodeLanguage.Dart);
generateLanguages.add(CodeLanguage.Swift);
generateLanguages.add(CodeLanguage.Golang);
generateLanguages.add(CodeLanguage.JavaScript);
generateLanguages.add(CodeLanguage.EcmaScript);
Expand All @@ -60,8 +62,8 @@ public void generateAllProtocols() throws IOException {

@Test
public void copyFiles() throws IOException {
var sourceDirectory = "D:\\Project\\zfoo\\protocol\\zfoophp";
var targetDirectory = "D:\\github\\zfoo-php-support2\\zfoophp";
var sourceDirectory = "D:\\github\\zfoo\\protocol\\zfoophp";
var targetDirectory = "D:\\github\\zfoo-php-support\\zfoophp";
FileUtils.deleteFile(new File(targetDirectory));
FileUtils.copyDirectory(new File(sourceDirectory), new File(targetDirectory));
}
Expand Down

0 comments on commit 35b8ac9

Please sign in to comment.