Example #1
0
        public async Task FuckingBallmerShouldWork()
        {
            var res = await _foaasClient.Ballmer("Someone", "Something", "Ballmer");

            Assert.IsNotNull(res);
            Assert.AreEqual(
                "F*****g Someone is a f*****g pussy. I'm going to f*****g bury that guy, I have done it before, and I will do it again. I'm going to f*****g kill Something.",
                res.Message);
            Assert.AreEqual("- Ballmer", res.Subtitle);
        }
        public async Task FuckingBallmerWorks()
        {
            var response = await _client.Ballmer(testData.Name, testData.Company, testData.From);

            Assert.NotNull(response);
            Assert.Equal($@"F*****g {testData.Name} is a f*****g pussy. I'm going to f*****g bury that guy, I have done it before, and I will do it again. I'm going to f*****g kill {testData.Company}."
                         , response.Message);
            Assert.Equal($@"- {testData.From}"
                         , response.Subtitle);
        }