コード例 #1
0
        public void ActivateAtomicThrows()
        {
            Dictionary <string, string> headers = new Dictionary <string, string>()
            {
                { "Target", "test" },
                { "MessageSource", "Body" }
            };

            Slack.Inflator inflator = new Inflator();
            Assert.Throws <NotImplementedException>(() => { inflator.CreateAtomicComponent(headers); });
        }
コード例 #2
0
        public void AtomicThrows()
        {
            Inflator inflator = new Inflator();

            Assert.Throws <NotImplementedException>(() => inflator.CreateAtomicComponent(null));
        }