public void IntAtomLongTest() { const long value = 50001; var atom = new IntAtom(value); atom.Should().NotBeNull(); atom.Type.Should().Be(AtomType.Integer); atom.Value.Should().Be((int)value); }
public void IntAtomIntegerTest() { const int value = 5; var atom = new IntAtom(value); atom.Should().NotBeNull(); atom.Type.Should().Be(AtomType.Integer); atom.Value.Should().Be(value); }