私は hibernate.cfg.xml でこの設定をしました:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
<property name="connection.connection_string">Data Source=.\SQLEXPRESS;Initial Catalog=MyDB;Integrated Security=SSPI;</property>
<property name="show_sql">true</property>
</session-factory>
</hibernate-configuration>
クラス ライブラリを作成し、MbUnit を使用して統合テストを作成しました。失敗します。レポートの一部(私が十分だと思うもの)はここにあります:
** NO TESTS WERE RUN (No tests found) **
TestCase 'M:IntegrationTests.RepositoryTests.ListAllPostsReturnsAListOfPost'
failed: The ProxyFactoryFactory was not configured.
Initialize 'proxyfactory.factory_class' property of the session-factory configuration section with one of the available NHibernate.ByteCode providers.
私は多くのチュートリアルを読みましたが、このプロキシ ファクトリ構成を見たことがありません。指定は本当に必要ですか?もしそうなら、どうすればそれを行うことができますか? 他のライブラリを参照する必要がありますか?