Skip to content

Commit

Permalink
Generate async files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 1, 2024
1 parent 3f02e7c commit 382095b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/NHibernate.Test/Async/NHSpecificTest/GH3465/Fixture.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by AsyncGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------


using System.Linq;
using NUnit.Framework;

namespace NHibernate.Test.NHSpecificTest.GH3465
{
using System.Threading.Tasks;
[TestFixture]
public class FixtureAsync : BugTestCase
{
[Test]
public void ThetaJoinSubQueryAsync()
{
using (var session = OpenSession())
using (session.BeginTransaction())
{
var query = session.CreateQuery("select e.Id from EntityA e where exists (from e.Children b, EntityC c)");
Assert.DoesNotThrowAsync(() => query.ListAsync());
}
}
}
}

0 comments on commit 382095b

Please sign in to comment.