anx.framework/ANX.Framework.TestCenter/ReflectionLearningTests.cs
SND\AstrorEnales_cp cfe19d5c4a - Implemented a dynamic parameter buffer for shader parameters
- Updated the Metro shader generator
- Fixed the metro resolution being correctly set to the graphics device
2012-08-19 14:38:58 +00:00

25 lines
632 B
C#

using System;
using System.Reflection;
using NUnit.Framework;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.TestCenter
{
public static class ReflectionLearningTests
{
[Test]
public static void TestEmptyAssemblyGetManifestResourceNames()
{
Assembly assembly = Assembly.GetExecutingAssembly();
string[] names = assembly.GetManifestResourceNames();
Assert.NotNull(names);
Assert.AreEqual(names.Length, 0);
}
}
}