Skip to content

Commit 318ecad

Browse files
committed
Add test files
1 parent 97765f8 commit 318ecad

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

tests/test_files/sample.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* SPDX-FileCopyrightText: Copyright 2022 LG Electronics Inc.
3+
* SPDX-License-Identifier: Apache-2.0
4+
* DownloadLocation: https://github.com/browserify/acorn-node
5+
* SPDX-FileCopyrightText: Copyright 2017 Free Software Foundation Europe e.V.
6+
* SPDX-License-Identifier: MIT
7+
* DownloadLocation: https://github.com/fsfe/reuse-tool
8+
*/
9+
#include <iostream>
10+
11+
int main()
12+
{
13+
std::cout << "Hello, world!" << std::endl;
14+
return 0;
15+
}

tests/test_files/temp.cpp

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* SPDX-FileCopyrightText: Copyright 2022 LG Electronics Inc.
3+
* SPDX-License-Identifier: Apache-2.0
4+
* DownloadLocation: https://github.com/browserify/acorn-node
5+
*/
6+
#include <iostream>
7+
8+
int main()
9+
{
10+
std::cout << "Hello, world!" << std::endl;
11+
return 0;
12+
}

0 commit comments

Comments
 (0)