From 69ec0dc1c73a90e231ef3424943174a6355d6295 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Wed, 21 Feb 2018 11:43:03 -0800 Subject: [PATCH] integration tests --- integration_tests/dockerfiles/Dockerfile | 15 +++++++++++++++ integration_tests/integration_test.go | 23 +++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 integration_tests/dockerfiles/Dockerfile create mode 100644 integration_tests/integration_test.go diff --git a/integration_tests/dockerfiles/Dockerfile b/integration_tests/dockerfiles/Dockerfile new file mode 100644 index 000000000..f6cfdf83a --- /dev/null +++ b/integration_tests/dockerfiles/Dockerfile @@ -0,0 +1,15 @@ +# Copyright 2018 Google, Inc. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +FROM gcr.io/google-appengine/debian9:latest \ No newline at end of file diff --git a/integration_tests/integration_test.go b/integration_tests/integration_test.go new file mode 100644 index 000000000..02f3e363a --- /dev/null +++ b/integration_tests/integration_test.go @@ -0,0 +1,23 @@ +/* +Copyright 2018 Google LLC + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +package integration_tests + +import () + +func main() { + +}