コード例 #1
0
        internal void IsEmpty_Works()
        {
            _testInstance.IsEmpty(Array.Empty <string>());

            Tools.Asserter.Throws <AssertException>(
                () => _testInstance.IsEmpty(null));
            Tools.Asserter.Throws <AssertException>(
                () => _testInstance.IsEmpty(Tools.Randomizer.Create <string[]>()));
        }