@Test
 public void topicPathFromNameWellFormed() {
   TopicPath path = PubsubClient.topicPathFromName("test", "something");
   assertEquals("projects/test/topics/something", path.getPath());
   assertEquals("/topics/test/something", path.getV1Beta1Path());
 }