私は、Sharp Architecture、NHibernateValidatorなどに基づくWhoCanHelpMeに基づくテストプロジェクトを使用しています。その記述どおり、when_the_profile_tasks_is_asked_to_create_a_profile単体テストは、プロファイルオブジェクトを作成し、問題なく保存します。
これで、プロファイルオブジェクトはCreateProfileDetailsタイプになり、IValidatableインターフェイスを継承する独自のValidatableValueObjectから派生します。
私のクラスがValidatableValueObjectではなくEntityに基づいている場合、問題が表面化します。バリデーターがnullであるため、テストを実行するとSystem.NullReferenceExceptionが発生します。
私はこの悪い行動を解決するのに途方に暮れているのではないかと心配しています。誰かがこれの底に到達するためのいくつかの提案がありますか?
ありがとう、
-テッド-
これはスタックトレースです。
should ask the question repository to save the new question : FailedObject reference not set to an instance of an object.
System.NullReferenceException: Object reference not set to an instance of an object.
at SharpArch.Core.DomainModel.ValidatableObject.IsValid()
at FieldAudit.Framework.Validation.ValidatableExtensions.Validate(IValidatable entity) in ValidatableExtensions.cs: line 33
at FieldAudit.Tasks.QuestionTasks.CreateQuestion(Question question) in QuestionTasks.cs: line 40
at MSpecTests.FieldAudit.Tasks.when_the_question_tasks_is_asked_to_create_a_question.b__2() in QuestionTasksSpecs.cs: line 137
これはクラス階層です。
entity = {FieldAudit.Domain.Question}
[FieldAudit.Domain.Question] = {FieldAudit.Domain.Question}
base {SharpArch.Core.DomainModel.Entity} = {FieldAudit.Domain.Question}
base {SharpArch.Core.DomainModel.EntityWithTypedId} = {FieldAudit.Domain.Question}
base {SharpArch.Core.DomainModel.ValidatableObject} = {FieldAudit.Domain.Question}
Validator = null
base {SharpArch.Core.DomainModel.BaseObject} = {FieldAudit.Domain.Question}
ソースコードはこちらhttp://code.google.com/p/sharp-architecture/source/browse/trunk/src/SharpArch/SharpArch.Core/DomainModel/ValidatableObject.cs>
検証登録のソースコード:(申し訳ありませんが、私は新しいユーザーであり、これをリンクとして投稿できないため、コピー/貼り付けする必要があります)whocanhelpme.codeplex.com/SourceControl/changeset/view/58203#883241