Skip to content

Commit

Permalink
Renaming class for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Chicoine committed Apr 13, 2022
1 parent e2d9723 commit a70ebf0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import java.io.File;
import java.io.FileWriter;

public class CqlTranslatorOptionsToJSON {
public class CqlTranslatorOptionsToJsonSchema {
private static final String separator = System.getProperty("file.separator");
private static final String JSON_LOC = "src" + separator + "test" + separator +
"resources" + separator + "org" + separator + "cqframework" + separator + "cql" + separator + "cql2elm" +
separator + "json" + separator + "CqlTranslatorOptions.json";

@Test
public void CqlTranslatorOptionsToJsonSchema() {
public void BuildJsonSchemaFromCqlTranslatorOptions() {
//delete file if exists:
try {
File jsonFile = new File(JSON_LOC);
Expand Down

0 comments on commit a70ebf0

Please sign in to comment.