コード例 #1
0
ファイル: StringTests.cs プロジェクト: standardfx/standard
        public void NotNullTest()
        {
            string actual = "afds";

            SAssert.NotNull(actual);

            XAssert.Throws <ArgumentException>(() => SAssert.NotNull(null));
        }