public void WriteJson_NullSerializer_ThrowsException()
        {
            // Arrange
            var infoIdentifierJsonConverter = new InfoIdentifierJsonConverter();

            // Act + Assert
            Assert.That(() => infoIdentifierJsonConverter.WriteJson(new JsonTextWriter(new StreamWriter(new MemoryStream())), 0, null), Throws.InstanceOf<ArgumentNullException>());
        }
        public void WriteJson_NullWriter_ThrowsException()
        {
            // Arrange
            var infoIdentifierJsonConverter = new InfoIdentifierJsonConverter();

            // Act + Assert
            Assert.That(() => infoIdentifierJsonConverter.WriteJson(null, 0, new JsonSerializer()), Throws.InstanceOf<ArgumentNullException>());
        }