mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
721 B
25 lines
721 B
// <copyright file="TiffIfdEntryTests.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageSharp.Tests
|
|
{
|
|
using Xunit;
|
|
|
|
using ImageSharp.Formats.Tiff;
|
|
|
|
public class TiffIfdEntryTests
|
|
{
|
|
[Fact]
|
|
public void Constructor_SetsProperties()
|
|
{
|
|
var entry = new TiffIfdEntry((ushort)10u, TiffType.Short, 20u, new byte[] { 2, 4, 6, 8 });
|
|
|
|
Assert.Equal(10u, entry.Tag);
|
|
Assert.Equal(TiffType.Short, entry.Type);
|
|
Assert.Equal(20u, entry.Count);
|
|
Assert.Equal(new byte[] { 2, 4, 6, 8 }, entry.Value);
|
|
}
|
|
}
|
|
}
|