diff --git a/src/vscode_plugin/src/test/runTest.ts b/src/vscode_plugin/src/test/runTest.ts index ff292ae0..9a3d600e 100644 --- a/src/vscode_plugin/src/test/runTest.ts +++ b/src/vscode_plugin/src/test/runTest.ts @@ -1,3 +1,18 @@ +/* +* Copyright (c) 2024 Shenzhen Kaihong Digital Industry Development Co., Ltd. +* 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. +*/ + import * as path from 'path'; import { runTests } from '@vscode/test-electron'; diff --git a/src/vscode_plugin/src/test/suite/common_tool.test.ts b/src/vscode_plugin/src/test/suite/common_tool.test.ts index 520704b8..ab7b1d81 100644 --- a/src/vscode_plugin/src/test/suite/common_tool.test.ts +++ b/src/vscode_plugin/src/test/suite/common_tool.test.ts @@ -1,3 +1,18 @@ +/* +* Copyright (c) 2024 Shenzhen Kaihong Digital Industry Development Co., Ltd. +* 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. +*/ + import * as assert from 'assert'; // You can import and use all API from the 'vscode' module diff --git a/src/vscode_plugin/src/test/suite/extension.test.ts b/src/vscode_plugin/src/test/suite/extension.test.ts index 9bca13ad..43968527 100644 --- a/src/vscode_plugin/src/test/suite/extension.test.ts +++ b/src/vscode_plugin/src/test/suite/extension.test.ts @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2024 Shenzhen Kaihong Digital Industry Development Co., Ltd. +* 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. +*/ + + import * as assert from 'assert'; // You can import and use all API from the 'vscode' module diff --git a/src/vscode_plugin/src/test/suite/index.ts b/src/vscode_plugin/src/test/suite/index.ts index 5ca2e56e..b2f6c650 100644 --- a/src/vscode_plugin/src/test/suite/index.ts +++ b/src/vscode_plugin/src/test/suite/index.ts @@ -1,3 +1,18 @@ +/* +* Copyright (c) 2024 Shenzhen Kaihong Digital Industry Development Co., Ltd. +* 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. +*/ + import * as path from 'path'; import * as Mocha from 'mocha'; import * as glob from 'glob';