xref: /openbmc/phosphor-dbus-monitor/src/test/templates/interfaceaddtest.mako.hpp (revision e5576bf2a145117c583c3ad05fec3a08aa90993d)
1 const std::array<std::string, ${len(pathinstances)}> paths = {
2 % for p in paths:
3     "${p.name}"s,
4 % endfor
5 };
6 
7 const std::array<std::string, ${len(pathwatches)}> pathwatches = {{
8 % for w in pathwatches:
9     paths[${w.pathinstances}],
10 % endfor
11 }};
12