xref: /openbmc/phosphor-dbus-monitor/src/test/templates/interfaceaddtest.mako.hpp (revision 3d6d3182ee0b0e88b81fbbbe5c91dea3e99425a9)
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