コード例 #1
0
        public IActionResult Index()
        {
            var sentence = _corporateJargonGenerator.GetFluff();

            return(View(new IndexModel(sentence)));
        }
コード例 #2
0
ファイル: Test.cs プロジェクト: bmatheson1/Bravo
        public void GetFluff_ShouldGenerateJargon()
        {
            string result = _corporateJargonGenerator.GetFluff();

            Assert.IsNotEmpty(result);
        }