Beispiel #1
0
 public void InheritMultipleDerivedInterfaces()
 {
     Assert.Throws <ThriftyException>(() =>
     {
         ThriftServiceMetadata.GetThriftServiceAttribute(typeof(MultipleDerivedServiceImplementation));
     });
 }
Beispiel #2
0
 public void InheritCombinedInterface()
 {
     ThriftServiceMetadata.GetThriftServiceAttribute(typeof(CombinedServiceImplementation));
 }
Beispiel #3
0
 public void InheritMultipleDerviedInterfacesWithExplicitAttribute()
 {
     ThriftServiceMetadata.GetThriftServiceAttribute(typeof(MultipleDerivedServiceImplementationWithExplicitAttribute));
 }
Beispiel #4
0
 public void InheritSingleDerivedInterface()
 {
     ThriftServiceMetadata.GetThriftServiceAttribute(typeof(SingleDerivedServiceImplementation));
 }
Beispiel #5
0
 public void InheritBaseInterface()
 {
     ThriftServiceMetadata.GetThriftServiceAttribute(typeof(BaseServiceImplementation));
 }