mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 04c9f1ed93785a12651bf1534db0ab75c54cab3d Former-commit-id: c309bfb1922779cfd24306c1784b19cbacf6880fpull/17/head
2 changed files with 32 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||
|
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
// <copyright file="ImageProcessorBootstrapperTests.cs" company="James South">
|
||||
|
// Copyright (c) James South.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
// </copyright>
|
||||
|
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
namespace ImageProcessor.UnitTests.Configuration |
||||
|
{ |
||||
|
using System; |
||||
|
using System.Linq; |
||||
|
|
||||
|
using FluentAssertions; |
||||
|
using NUnit.Framework; |
||||
|
|
||||
|
using ImageProcessor.Configuration; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Test harness for the ImageProcessor bootstrapper tests
|
||||
|
/// </summary>
|
||||
|
[TestFixture] |
||||
|
public class ImageProcessorBootrapperTests |
||||
|
{ |
||||
|
[Test] |
||||
|
public void Singleton_is_instantiated() |
||||
|
{ |
||||
|
ImageProcessorBootstrapper.Instance.SupportedImageFormats.Count().Should().BeGreaterThan(0, "because there should be supported image formats"); |
||||
|
|
||||
|
ImageProcessorBootstrapper.Instance.NativeBinaryFactory.Is64BitEnvironment.Should().Be(Environment.Is64BitProcess); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue