Exemplo n.º 1
0
        public void RealAtomDumpNullParameterTest()
        {
            const double value = 5.5D;
            var          atom  = new RealAtom(value);

            const string prefix = "Test";

            Action act = () => atom.Dump(null, prefix);

            act.Should().Throw <ArgumentNullException>();
        }
Exemplo n.º 2
0
        public void RealAtomDumpTest()
        {
            var callback = false;

            var logger = A.Fake <ILogWrapper>();

            A.CallTo(() => logger.InfoFormat(A <string> .Ignored, A <object> .Ignored, A <object> .Ignored))
            .Invokes(() => callback = true);

            const double value = 5.5D;
            var          atom  = new RealAtom(value);

            const string prefix = "Test";

            atom.Dump(logger, prefix);

            callback.Should().BeTrue();
        }