コード例 #1
0
ファイル: Int32Tests.cs プロジェクト: standardfx/standard
        public void LessThanTest()
        {
            int actual   = 23;
            int compared = 32;

            SAssert.LessThan(actual, compared);

            int compared2 = 12;

            XAssert.Throws <ArgumentException>(() => SAssert.LessThan(actual, compared2));
        }