git-svn-id: https://duplicati.googlecode.com/svn/trunk@1512 59da171f-624f-0410-aa54-27559c288bec
37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
// Copyright (C) 2012, Aaron Hamid
|
|
// https://github.com/ahamid, aaron.hamid@gmail.com
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.Hosting;
|
|
using NUnit.Framework;
|
|
using Duplicati.Library.Utility;
|
|
|
|
namespace Duplicati_Test
|
|
{
|
|
[TestFixture()]
|
|
public class UtilityTest
|
|
{
|
|
// EntryAssembly is null in NUnit tests. The following approach does not work w/ Mono due to unimplemented members:
|
|
// http://social.msdn.microsoft.com/Forums/nb-NO/clr/thread/db44fe1a-3bb4-41d4-a0e0-f3021f30e56f
|
|
// so this layer of indirection is necessary
|
|
[Test()]
|
|
public void TestGetEntryAssembly()
|
|
{
|
|
Assert.AreEqual("Duplicati.Library.Utility", Utility.getEntryAssembly().GetName().Name);
|
|
}
|
|
}
|
|
} |