public void RelativeTopicNameIsNamespaceQualifiedPositive()
 {
     RelativeTopicVersionKey topicName = new RelativeTopicVersionKey("Foo", "Bar");
     Assert.IsTrue(topicName.IsNamespaceQualified);
 }
 public void RelativeTopicNameIsNamespaceQualifiedNegative()
 {
     RelativeTopicVersionKey topicName = new RelativeTopicVersionKey("Foo");
     Assert.IsFalse(topicName.IsNamespaceQualified);
 }