public void FabricRuntime_Register_TypeDerivedFromNeitherStatefulNorStatelessFails()
        {
            var runtime = FabricRuntimeTest.GetDefaultRuntime();

            AssertThrows <ArgumentException>(() => runtime.RegisterServiceType(FabricRuntimeTest.DefaultServiceName, typeof(int)));
            AssertThrows <ArgumentException>(() => runtime.RegisterServiceTypeAsync(FabricRuntimeTest.DefaultServiceName, typeof(int), FabricRuntimeTest.DefaultTimeout, CancellationToken.None));
        }
 public void TestInitialize()
 {
     FabricRuntimeTest.Cleanup();
 }