Fixing an issue with output parameters that are of type IntPtr
[castle.git] / ActiveRecord / Castle.ActiveRecord.Framework.Internal.Tests / AssemblyXmlGenerationTestCase.cs
blob61e38bb63e2cd89b9c96a3cd32c7a4eaeabc0242
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.ActiveRecord.Framework.Internal.Tests
17 using NUnit.Framework;
19 [TestFixture]
20 public class AssemblyXmlGenerationTestCase : AbstractActiveRecordTest
22 [Test]
23 public void GenerateHqlQueryAndImportsFromAssembly()
25 AssemblyXmlGenerator generator = new AssemblyXmlGenerator();
26 string[] xmlConfigurations = generator.CreateXmlConfigurations(typeof(AssemblyXmlGenerationTestCase).Assembly);
27 string actual = xmlConfigurations[0];
28 string expected = "<?xml version=\"1.0\" encoding=\"utf-16\"?>"+
29 "<hibernate-mapping xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\""+
30 " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:nhibernate-mapping-2.2\">"+
31 "<import class=\"Castle.ActiveRecord.Framework.Internal.Tests.ImportClassRow, Castle.ActiveRecord.Framework.Internal.Tests\" rename=\"ImportClassRow\"/>\r\n"+
32 " <query name='allAdultUsers'>\r\n"+
33 " <![CDATA[from User user where user.Age > 21]]>\r\n"+
34 " </query>\r\n"+
35 "</hibernate-mapping>\r\n" ;
36 Assert.AreEqual(expected, actual);
39 [Test]
40 public void CanGetCustomValueFromRawXmlDerivedAttribute()
42 string expected =
43 @"<hibernate-mapping xmlns='urn:nhibernate-mapping-2.2'>
44 <import class='Castle.ActiveRecord.Framework.Internal.Tests.ImportClassRow2, Castle.ActiveRecord.Framework.Internal.Tests' rename='ImportClassRow2'/>
45 </hibernate-mapping>";
46 AssemblyXmlGenerator generator = new AssemblyXmlGenerator();
47 string[] xmlConfigurations = generator.CreateXmlConfigurations(typeof(AssemblyXmlGenerationTestCase).Assembly);
48 string actual = xmlConfigurations[1];
49 Assert.AreEqual(expected, actual);