private const double _expectMinRange = 1;
private const double _expectMaxRange = 100;
private const long _expectTimestamp = 777;
- private const int _notEditedCompId = 10;
- private const int _compId = 1;
+ private static int _notEditedCompId = 777;
+ private static int _compId = 1;
private const string _providerId = "org.tizen.ComplicationProviderCsharp/battery";
private const string _notExistProviderId = "org.tizen.notexist";
public static bool _userDisposeCalled;
[TearDown]
public void Destroy()
{
+ _compId++;
+ _notEditedCompId++;
LogUtils.Write(LogUtils.DEBUG , LogUtils.TAG , "Postconditions for each TEST");
}
Assert.IsNotNull(mc, "Object should not be null after initializing");
Assert.IsInstanceOf<Complication>(mc, "Object should be instance of Complication");
Assert.Throws<InvalidOperationException>(() => mc.TransferEvent(EventTypes.EventTap));
+ mc.Dispose();
}
[Test]