Added a note about an unexplained exception that happened one time whilst executing the unit tests

git-svn-id: file:///srv/devel/repo-conversion/nusu@169 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2009-08-05 21:25:28 +00:00
parent 88b89dea19
commit 2472c892fb
2 changed files with 17 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup> <PropertyGroup>
<ProjectGuid>{DFFEAB70-51B8-4714-BCA6-79B733BBC520}</ProjectGuid> <ProjectGuid>{DFFEAB70-51B8-4714-BCA6-79B733BBC520}</ProjectGuid>
<ProjectTypeGuids>{2DF5C3F4-5A5F-47a9-8E94-23B4456F55E2};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{2DF5C3F4-5A5F-47a9-8E94-23B4456F55E2};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
@ -58,10 +58,6 @@
<RequiredTargetFramework>3.5</RequiredTargetFramework> <RequiredTargetFramework>3.5</RequiredTargetFramework>
<Private>False</Private> <Private>False</Private>
</Reference> </Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
<Private>False</Private>
</Reference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />

View File

@ -455,6 +455,22 @@ namespace Nuclex.Support.Scheduling {
} }
} }
// TODO: Unit testing caused this exception
//
// Nuclex.Support.Scheduling.SchedulerTest.TestThrowOnNotifyAtWithUnspecifiedDateTimeKind :
// System.NullReferenceException: Der Objektverweis wurde nicht auf
// eine Objektinstanz festgelegt.
// bei Nuclex.Support.Scheduling.SchedulerTest.TestSubscriber.Callback(Object state)
// in D:\Devel\framework\Nuclex.Support\Source\Scheduling\Scheduler.Test.cs:Zeile 177.
// bei System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)
// bei System.Threading.ExecutionContext.Run(
// ExecutionContext executionContext, ContextCallback callback, Object state
// )
// bei System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(
// _ThreadPoolWaitCallback tpWaitCallBack
// )
// bei System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
/// <summary>Returns the provided date/time value as a utc time value</summary> /// <summary>Returns the provided date/time value as a utc time value</summary>
/// <param name="dateTime">Date/time value that will be returned as UTC</param> /// <param name="dateTime">Date/time value that will be returned as UTC</param>
/// <returns>The provided date/time value as UTC</returns> /// <returns>The provided date/time value as UTC</returns>