Home | History | Annotate | Download | only in test
      1 #ifndef HIDL_TEST_H_
      2 #define HIDL_TEST_H_
      3 
      4 #define EACH_SERVER(THING)                  \
      5     do {                                    \
      6         THING<IMemoryTest>("memory");       \
      7         THING<IChild>("child");             \
      8         THING<IParent>("parent");           \
      9         THING<IFetcher>("fetcher");         \
     10         THING<IBar>("foo");                 \
     11         THING<IHash>("default");            \
     12         THING<IGraph>("graph");             \
     13         THING<IPointer>("pointer");         \
     14         THING<IMultithread>("multithread"); \
     15     } while (false)
     16 
     17 #endif  // HIDL_TEST_H_