Xamarin Public Jenkins (auto-signing) 19234507ba Imported Upstream version 5.14.0.78
Former-commit-id: 3494343bcc9ddb42b36b82dd9ae7b69e85e0229f
2018-05-10 08:37:03 +00:00

33 lines
516 B
C#

//
// CompilerTest.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// (C) Ximian, Inc.
//
using System;
using System.Collections.Generic;
using Microsoft.CSharp;
using NUnit.Framework;
namespace MonoTests.Cscompmgd
{
[TestFixture]
public class CompilerTest
{
[SetUp]
public void GetReady ()
{
}
[TestCase]
public void EmptySourceTexts ()
{
Assert.Throws<IndexOutOfRangeException> (() => Compiler.Compile (Array.Empty<string> (), Array.Empty<string> (), "", null, null));
}
}
}