diff --git a/test/cli/more-projects_test.py b/test/cli/more-projects_test.py index c26bce8ac955..eff936eab0c9 100644 --- a/test/cli/more-projects_test.py +++ b/test/cli/more-projects_test.py @@ -636,4 +636,15 @@ def test_json_file_ignore_2(tmpdir): 'cppcheck: all paths were ignored' ] - assert_cppcheck(args, ec_exp=1, err_exp=[], out_exp=out_lines) \ No newline at end of file + assert_cppcheck(args, ec_exp=1, err_exp=[], out_exp=out_lines) + + +def test_shared_items_project(tmpdir): + solutionDir = os.path.join(os.getcwd(), 'shared-items-project') + solutionFile = f"{solutionDir}/Solution.sln" + + args = ['--project={}'.format(solutionFile), "-j1"] + + # TODO: + # - Assert "shared-items-project\Main\MainFile.Cpp" + # - Assert "shared-items-project\Shared\TestClass.Cpp" \ No newline at end of file