本文整理汇总了C#中Counter.SetUpSourceEdge方法的典型用法代码示例。如果您正苦于以下问题:C# Counter.SetUpSourceEdge方法的具体用法?C# Counter.SetUpSourceEdge怎么用?C# Counter.SetUpSourceEdge使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Counter
的用法示例。
在下文中一共展示了Counter.SetUpSourceEdge方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestSetUpSourceEdgeWithNullSource
public void TestSetUpSourceEdgeWithNullSource()
{
using (Counter c = new Counter())
{
TestInit(0, 0, 0, false, false, false, false);
Assert.Throws<SystemException>(() =>
{
c.SetUpSourceEdge(true, true);
});
}
}
示例2: TestCountUpSourceEdge
public void TestCountUpSourceEdge(bool rising, bool falling)
{
using (Counter c = new Counter())
{
c.SetUpSource(2);
c.SetUpSourceEdge(rising, falling);
Assert.AreEqual(rising, GetCounterData()[0].UpRisingEdge);
Assert.AreEqual(falling, GetCounterData()[0].UpFallingEdge);
}
}
示例3: TestCountUpSourceEdge
public void TestCountUpSourceEdge(bool rising, bool falling)
{
using (Counter c = new Counter())
{
c.SetUpSource(2);
c.SetUpSourceEdge(rising, falling);
Assert.AreEqual(rising, HalData()["counter"][0]["up_rising_edge"]);
Assert.AreEqual(falling, HalData()["counter"][0]["up_falling_edge"]);
}
}