()
| 980 | |
| 981 | #[test] |
| 982 | fn program_template_validation_accepts_builtin_templates() { |
| 983 | for template in builtin_program_templates() { |
| 984 | let validation = template.validate(); |
| 985 | assert!( |
| 986 | validation.is_valid(), |
| 987 | "unexpected validation errors: {}", |
| 988 | validation.summary() |
| 989 | ); |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | #[test] |
| 994 | fn program_template_validation_reports_asset_issues() { |
nothing calls this directly
no test coverage detected