From 35860c78bdcdae83453d439acea85828b43e1e20 Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Thu, 26 Mar 2015 19:06:10 -0700 Subject: [PATCH] Added license headers. --- .../samples/unittest/AuthenticationTest.java | 15 +++++++++++++++ .../samples/unittest/CapabilitiesTest.java | 15 +++++++++++++++ .../samples/unittest/DeferredTaskTest.java | 15 +++++++++++++++ .../LocalCustomPolicyHighRepDatastoreTest.java | 15 +++++++++++++++ .../samples/unittest/LocalDatastoreTest.java | 15 +++++++++++++++ .../unittest/LocalHighRepDatastoreTest.java | 15 +++++++++++++++ .../samples/unittest/LocalMemcacheTest.java | 15 +++++++++++++++ .../appengine/samples/unittest/MyFirstTest.java | 15 +++++++++++++++ .../appengine/samples/unittest/OAuthTest.java | 15 +++++++++++++++ .../appengine/samples/unittest/TaskQueueTest.java | 15 +++++++++++++++ 10 files changed, 150 insertions(+) diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/AuthenticationTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/AuthenticationTest.java index 414562eb0b0..58bf71e9f1d 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/AuthenticationTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/AuthenticationTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START auth] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/CapabilitiesTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/CapabilitiesTest.java index eac6a40516a..7a2286f7e9e 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/CapabilitiesTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/CapabilitiesTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START local_capabilities] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/DeferredTaskTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/DeferredTaskTest.java index 3b103732878..d30f67cff1a 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/DeferredTaskTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/DeferredTaskTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START taskqueue_example_2] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalCustomPolicyHighRepDatastoreTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalCustomPolicyHighRepDatastoreTest.java index a700c1e0821..0bb9505e4a4 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalCustomPolicyHighRepDatastoreTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalCustomPolicyHighRepDatastoreTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; import com.google.appengine.api.datastore.DatastoreService; diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalDatastoreTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalDatastoreTest.java index 6ae5ee2117a..a93c51951f4 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalDatastoreTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalDatastoreTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START datastore_example_1] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalHighRepDatastoreTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalHighRepDatastoreTest.java index 8dbbe8afb0b..e66db4792c7 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalHighRepDatastoreTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalHighRepDatastoreTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START HRD_example_1] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalMemcacheTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalMemcacheTest.java index 0e98524ae0c..f94b869c8c1 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/LocalMemcacheTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/LocalMemcacheTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START memcache_example_1] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/MyFirstTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/MyFirstTest.java index 9e3273d51ba..c4ae279751a 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/MyFirstTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/MyFirstTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START framework] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/OAuthTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/OAuthTest.java index efc9c58397d..6575fbfd412 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/OAuthTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/OAuthTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START oauth] diff --git a/unittests/src/test/java/com/google/appengine/samples/unittest/TaskQueueTest.java b/unittests/src/test/java/com/google/appengine/samples/unittest/TaskQueueTest.java index 2e109fc5677..4d2072043a3 100644 --- a/unittests/src/test/java/com/google/appengine/samples/unittest/TaskQueueTest.java +++ b/unittests/src/test/java/com/google/appengine/samples/unittest/TaskQueueTest.java @@ -1,3 +1,18 @@ +/** + * Copyright 2015 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. + */ package com.google.appengine.samples.unittest; // [START taskqueue_example_1]