//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Tests.Icc
{
using System;
using Xunit;
public class IccDataReaderTests
{
[Fact]
public void ConstructorThrowsNullException()
{
Assert.Throws(() => new IccDataReader(null));
}
}
}