Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1660 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
5 changed files with 36 additions and 5 deletions
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using ICSharpCode.WixBinding; |
||||
using NUnit.Framework; |
||||
using System; |
||||
|
||||
namespace WixBinding.Tests.Document |
||||
{ |
||||
[TestFixture] |
||||
public class GetValueWithNoProjectTestFixture |
||||
{ |
||||
[Test] |
||||
public void NullReturned() |
||||
{ |
||||
WixDocument doc = new WixDocument(); |
||||
Assert.IsNull(doc.GetValue("test")); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue