// // CompilerTest.cs // // Author: // Atsushi Enomoto // // (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 (() => Compiler.Compile (Array.Empty (), Array.Empty (), "", null, null)); } } }