Esempio n. 1
0
        public void GetSearchReport_WithNullQuerys_ShouldThrowArgumentNullException()
        {
            List <string> querys = null;

            Func <Task> result = async() => await _searchManager.GetSearchReport(querys);

            result.Should().ThrowExactly <ArgumentNullException>();
        }