This repository has been archived on 2020-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
dotnet-nhibernate-test/ConsoleApp1/ORM/SchemaTest.cs
2020-06-09 00:12:01 +02:00

17 lines
371 B
C#

using System;
using NHibernate.Tool.hbm2ddl;
using NUnit.Framework;
namespace ConsoleApp1.ORM
{
[TestFixture]
public class SchemaTest
{
[Test]
public void CanGenerateSchema()
{
var schemaUpdate = new SchemaUpdate(NHibernateHelper.Configuration);
schemaUpdate.Execute(Console.WriteLine, true);
}
}
}