19234507ba
Former-commit-id: 3494343bcc9ddb42b36b82dd9ae7b69e85e0229f
33 lines
516 B
C#
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));
|
|
}
|
|
}
|
|
}
|