Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SerializedResourceQuery and add unit tests #91

Merged
merged 3 commits into from
Jul 21, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run spotless check.
  • Loading branch information
jingtang10 committed Jul 20, 2020
commit 3a02c2a1a7bb97759f115bf7560e1af489ed7da1
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import com.google.fhirengine.example.data.HapiFhirResourceDataSource
import com.google.fhirengine.sync.FhirDataSource
import com.google.fhirengine.sync.SyncConfiguration
import com.google.fhirengine.sync.SyncData
import org.hl7.fhir.r4.model.ResourceType
import java.util.ArrayList
import org.hl7.fhir.r4.model.ResourceType

class FhirApplication : Application() {

Expand All @@ -51,4 +51,4 @@ class FhirApplication : Application() {
fun fhirEngine(context: Context) =
(context.applicationContext as FhirApplication).fhirEngine
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,17 @@
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import androidx.lifecycle.ViewModelProvider;
import androidx.work.Constraints;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.parser.IParser;
import com.google.android.material.snackbar.Snackbar;
import com.google.fhirengine.FhirEngine;
import com.google.fhirengine.FhirEngineBuilder;
import com.google.fhirengine.example.api.HapiFhirService;
import com.google.fhirengine.example.data.HapiFhirResourceDataSource;
import com.google.fhirengine.sync.FhirDataSource;
import com.google.fhirengine.sync.SyncConfiguration;
import com.google.fhirengine.sync.SyncData;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.hl7.fhir.r4.model.Resource;
import org.hl7.fhir.r4.model.ResourceType;
import org.opencds.cqf.cql.execution.EvaluationResult;
import org.opencds.cqf.cql.execution.LibraryResult;

Expand Down