Ejemplo n.º 1
0
        public void RealAtomConstructorTest(double value)
        {
            var atom = new RealAtom(value);

            atom.Should().NotBeNull();
            atom.Type.Should().Be(AtomType.Real);
            atom.Value.Should().Be(value);
        }
Ejemplo n.º 2
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>();
        }
Ejemplo n.º 3
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();
        }