21 lines
377 B
Python
21 lines
377 B
Python
import os
|
|
|
|
def verify_files():
|
|
files = [
|
|
"base_component.h",
|
|
"component_registry.h",
|
|
"component_registry.cpp",
|
|
"complex_template.h"
|
|
]
|
|
base_path = "tests/assets/gencpp_samples"
|
|
for f in files:
|
|
p = os.path.join(base_path, f)
|
|
if os.path.exists(p):
|
|
print(f"Verified: {f}")
|
|
else:
|
|
print(f"Missing: {f}")
|
|
exit(1)
|
|
|
|
if __name__ == "__main__":
|
|
verify_files()
|