<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>bizunit Work Item Rss Feed</title><link>http://www.codeplex.com/bizunit/WorkItem/List.aspx</link><description>bizunit Work Item Rss Description</description><item><title>Created Issue: The BizUnit.TestSteps.File.ExistsStep does not honor the TimeOut value [19253]</title><link>http://bizunit.codeplex.com/workitem/19253</link><description>The Execute method will throw an exception even if the timeout has not been reached&lt;br /&gt;</description><author>JakobEskar</author><pubDate>Fri, 25 Jan 2013 12:25:29 GMT</pubDate><guid isPermaLink="false">Created Issue: The BizUnit.TestSteps.File.ExistsStep does not honor the TimeOut value [19253] 20130125122529P</guid></item><item><title>Created Issue: Validate a message from MSMQ test step [18881]</title><link>http://bizunit.codeplex.com/workitem/18881</link><description>i have a scenario where i need to validate a message from MSMQ&lt;br /&gt;the message is an xml one and i need to validate against a schema and aswell against a xpath..&lt;br /&gt;the xpath one is always returning all the values as a string&lt;br /&gt;</description><author>abhijitdutta</author><pubDate>Thu, 08 Nov 2012 06:39:14 GMT</pubDate><guid isPermaLink="false">Created Issue: Validate a message from MSMQ test step [18881] 20121108063914A</guid></item><item><title>Created Issue: Validation Steps Missing [18880]</title><link>http://bizunit.codeplex.com/workitem/18880</link><description>There are some validation steps which are deprecated in 4.0 but very essential like Regex,binary validator&lt;br /&gt;</description><author>abhijitdutta</author><pubDate>Thu, 08 Nov 2012 06:37:07 GMT</pubDate><guid isPermaLink="false">Created Issue: Validation Steps Missing [18880] 20121108063707A</guid></item><item><title>Created Issue: No proper WCF test step [18879]</title><link>http://bizunit.codeplex.com/workitem/18879</link><description>there is no WCF test step..only soap&amp;#47;http test tseps are provided which are not sufficient in the WCF era.&lt;br /&gt;</description><author>abhijitdutta</author><pubDate>Thu, 08 Nov 2012 06:35:59 GMT</pubDate><guid isPermaLink="false">Created Issue: No proper WCF test step [18879] 20121108063559A</guid></item><item><title>Created Issue: Problem with MAP testing with Bizunit [18859]</title><link>http://bizunit.codeplex.com/workitem/18859</link><description>While I am testing the Biz-talk Map Xpath result is concatenating all the value of each element under the Schema.&lt;br /&gt;</description><author>SoumenDatta</author><pubDate>Mon, 05 Nov 2012 14:22:36 GMT</pubDate><guid isPermaLink="false">Created Issue: Problem with MAP testing with Bizunit [18859] 20121105022236P</guid></item><item><title>Created Issue: NuGet package for BizUnit [18832]</title><link>http://bizunit.codeplex.com/workitem/18832</link><description>The MSI is great, but NuGet would make some people&amp;#39;s life a little easier.&lt;br /&gt;</description><author>schalkvanwyk</author><pubDate>Wed, 31 Oct 2012 14:31:59 GMT</pubDate><guid isPermaLink="false">Created Issue: NuGet package for BizUnit [18832] 20121031023159P</guid></item><item><title>Commented Issue: FilePathsToDelete Error [16262]</title><link>http://bizunit.codeplex.com/workitem/16262</link><description>Below my code&amp;#58;            &lt;br /&gt;&lt;br /&gt;var delete &amp;#61; new DeleteStep&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;delete.FilePathsToDelete.Add&amp;#40;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;Test&amp;#92;&amp;#92;Out&amp;#92;&amp;#92;&amp;#42;.xml&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;delete.Execute&amp;#40;new Context&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;I am getting &amp;#34;Object reference not set to an instance of an object.&amp;#34; error in line 2.  What am I doing wrong&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;Comments: ** Comment from web user: jcooper1982 ** &lt;p&gt;Also see the fix suggested in issue &amp;#35;18194 - changing the default constructor to ensure that the collection is instantiated when the test step is instantiated.&lt;/p&gt;</description><author>jcooper1982</author><pubDate>Wed, 06 Jun 2012 21:20:42 GMT</pubDate><guid isPermaLink="false">Commented Issue: FilePathsToDelete Error [16262] 20120606092042P</guid></item><item><title>Created Issue: DeleteStep fails when read in from a XAML TestCase [18194]</title><link>http://bizunit.codeplex.com/workitem/18194</link><description>When executing a TestCase that is read in from a XAML file, the DeleteStep will always fail as the FilePathToDelete collection is not properly instantiated.&lt;br /&gt;&lt;br /&gt;Creating a default constructor like the below allows the DeleteStep to be properly instantiated by the XAML deserializer.&lt;br /&gt;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; Default constructor which ensures that FilePathsToDelete is instantiated and thus the DeleteStep can deserialize properly.&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;&lt;br /&gt;        public DeleteStep&amp;#40;&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            FilePathsToDelete &amp;#61; new Collection&amp;#60;string&amp;#62;&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;Note that this might be a problem with other test steps that make use of collections.&lt;br /&gt;</description><author>jcooper1982</author><pubDate>Wed, 06 Jun 2012 21:18:42 GMT</pubDate><guid isPermaLink="false">Created Issue: DeleteStep fails when read in from a XAML TestCase [18194] 20120606091842P</guid></item><item><title>Commented Issue: FilePathsToDelete Error [16262]</title><link>http://bizunit.codeplex.com/workitem/16262</link><description>Below my code&amp;#58;            &lt;br /&gt;&lt;br /&gt;var delete &amp;#61; new DeleteStep&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;delete.FilePathsToDelete.Add&amp;#40;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;Test&amp;#92;&amp;#92;Out&amp;#92;&amp;#92;&amp;#42;.xml&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;delete.Execute&amp;#40;new Context&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;I am getting &amp;#34;Object reference not set to an instance of an object.&amp;#34; error in line 2.  What am I doing wrong&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;Comments: ** Comment from web user: KurtEwald ** &lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I have experienced the same problem. I am about to create a .exe command&lt;br /&gt;line tool, which is able to execute Xaml BizUnit 4.0 tests.&lt;/p&gt;&lt;p&gt;1&amp;#41; I have already considered the comments given above, but I still experience this&lt;br /&gt;problem. I don&amp;#39; have any glue. Any help will be highly appreciated.&lt;/p&gt;&lt;p&gt;2&amp;#41; Is there already a ready made command line tool provided by BizUnit, which is able to execute a Xaml testcase from the cmd command line&amp;#63;&lt;/p&gt;&lt;p&gt;Ad 1&amp;#41; I have attached the Xaml sample testcase, which I am trying to execute.&lt;/p&gt;&lt;p&gt;Thanks in advance&amp;#33;&lt;/p&gt;&lt;p&gt;Best regards&lt;/p&gt;&lt;p&gt;Kurt&lt;br /&gt;&lt;/p&gt;</description><author>KurtEwald</author><pubDate>Fri, 11 May 2012 09:29:37 GMT</pubDate><guid isPermaLink="false">Commented Issue: FilePathsToDelete Error [16262] 20120511092937A</guid></item><item><title>Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351]</title><link>http://bizunit.codeplex.com/workitem/17351</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am writing unit test for BizTalk 2010 application using BizUnit4.0 framework. The unit test is written for testing to check file is received at the output fileshare.  I am getting the below error  &amp;#34;System.ApplicationException&amp;#58; Directory does not contain the correct number of files&amp;#33;&lt;br /&gt; Found&amp;#58; 0 files matching the pattern &amp;#34;. &lt;br /&gt;But the same test passes while i am debugging via BizUnit source code. I have tried specifing the timeout via .Timeout and increased it to 3 minutes. But still no luck.&lt;br /&gt;&lt;br /&gt;Any help is greatly apprecieated.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Basawa&lt;br /&gt;Comments: ** Comment from web user: HaraldWolkenfelt ** &lt;p&gt;I reworked the ExistsStep like this&amp;#58;&lt;/p&gt;&lt;p&gt;public override void Execute&amp;#40;Context context&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var now &amp;#61; DateTime.Now&amp;#59;&lt;br /&gt;            string&amp;#91;&amp;#93; filelist &amp;#61; null&amp;#59;&lt;br /&gt;            bool foundCorrectNo &amp;#61; false&amp;#59;&lt;/p&gt;&lt;p&gt;            do&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Thread.Sleep&amp;#40;500&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;                &amp;#47;&amp;#47; Get the list of files in the directory&lt;br /&gt;                filelist &amp;#61; Directory.GetFiles&amp;#40;DirectoryPath, SearchPattern&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;                if &amp;#40;filelist.Length &amp;#61;&amp;#61; ExpectedNoOfFiles&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    foundCorrectNo &amp;#61; true&amp;#59;&lt;br /&gt;                    break&amp;#59;&lt;br /&gt;                &amp;#125;&lt;/p&gt;&lt;p&gt;            &amp;#125; while &amp;#40;now.AddMilliseconds&amp;#40;Timeout&amp;#41; &amp;#62; DateTime.Now&amp;#41;&amp;#59;&lt;br /&gt;            &lt;br /&gt;            context.LogInfo&amp;#40;&amp;#34;FilesExistStep found&amp;#58; &amp;#92;&amp;#34;&amp;#123;0&amp;#125;&amp;#92;&amp;#34; files&amp;#34;, filelist.Length&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;            if &amp;#40;&amp;#33;foundCorrectNo&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                &amp;#47;&amp;#47; Expecting more than one file &lt;br /&gt;                throw new ApplicationException&amp;#40;&lt;br /&gt;                    String.Format&amp;#40;&lt;br /&gt;                        &amp;#34;Directory does not contain the correct number of files&amp;#33;&amp;#92;n Found&amp;#58; &amp;#123;0&amp;#125; files matching the pattern &amp;#123;1&amp;#125;.&amp;#34;,&lt;br /&gt;                        filelist.Length,&lt;br /&gt;                        SearchPattern&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;/p&gt;</description><author>HaraldWolkenfelt</author><pubDate>Wed, 09 May 2012 11:36:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351] 20120509113609A</guid></item><item><title>Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351]</title><link>http://bizunit.codeplex.com/workitem/17351</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am writing unit test for BizTalk 2010 application using BizUnit4.0 framework. The unit test is written for testing to check file is received at the output fileshare.  I am getting the below error  &amp;#34;System.ApplicationException&amp;#58; Directory does not contain the correct number of files&amp;#33;&lt;br /&gt; Found&amp;#58; 0 files matching the pattern &amp;#34;. &lt;br /&gt;But the same test passes while i am debugging via BizUnit source code. I have tried specifing the timeout via .Timeout and increased it to 3 minutes. But still no luck.&lt;br /&gt;&lt;br /&gt;Any help is greatly apprecieated.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Basawa&lt;br /&gt;Comments: ** Comment from web user: HaraldWolkenfelt ** &lt;p&gt;I  do think it is an issue.&lt;br /&gt;In the &amp;#40;tight&amp;#41; do&amp;#123;&amp;#125;while loop, the exception is immediately thrown without consideration of the timeout.&lt;br /&gt;When debugging, you get a timeout due to your slow-stepping.&lt;br /&gt;The implementation of the now obsolete BizUnit.CoreSteps.TestSteps.FilesExistStep does work.&lt;/p&gt;&lt;p&gt;Harald&lt;/p&gt;</description><author>HaraldWolkenfelt</author><pubDate>Wed, 09 May 2012 11:17:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351] 20120509111720A</guid></item><item><title>Commented Issue: XmlValidationStep not failing when wrong schema is specified [17602]</title><link>http://bizunit.codeplex.com/workitem/17602</link><description>When a schema is specified which is complete mismatch for the xml document, the XmlValidationStep succeeds. &lt;br /&gt;&lt;br /&gt;XmlValidationStep should validate that a schema URI has been specified for all namespace URIs used in the XML instance.&lt;br /&gt;&lt;br /&gt;For an example of how this can be solved, see the ValidateSchemaNameSpaces method in the attached file.&lt;br /&gt;Comments: ** Comment from web user: desanghi ** &lt;p&gt;Hi &lt;/p&gt;&lt;p&gt;I have also encountered the same issue. The issue were&amp;#58;&lt;br /&gt;1&amp;#41; This step does not validate the namespace of the xml with the XSD.&lt;br /&gt;2&amp;#41;IF i give a totally different xml, even then it doesn&amp;#39;t fail. &lt;/p&gt;&lt;p&gt;I have modified the code for XMLValidationStep.cs and also tested it.&lt;br /&gt;I request you to test it and it is simpler than the code written by you.&lt;/p&gt;&lt;p&gt;The changes in ValidateXmlInstance Function is &amp;#58;&lt;br /&gt;&amp;#47;&amp;#47;Added new Logic for Validation&lt;br /&gt;                settings.ValidationFlags &amp;#61; XmlSchemaValidationFlags.ReportValidationWarnings&amp;#59;&lt;br /&gt;                &amp;#47;&amp;#47; set validation handler&lt;br /&gt;                settings.ValidationEventHandler &amp;#43;&amp;#61; new System.Xml.Schema.ValidationEventHandler&amp;#40;ValidationEventHandler&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#47;&amp;#47;End&lt;/p&gt;&lt;p&gt;The changes in ValidationEventHandler Function is &amp;#58;&lt;br /&gt;void ValidationEventHandler&amp;#40;object sender, ValidationEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            switch &amp;#40;e.Severity&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                case XmlSeverityType.Error&amp;#58;&lt;br /&gt;                    _context.LogError&amp;#40;e.Message&amp;#41;&amp;#59;&lt;br /&gt;                    _validationException &amp;#61; e.Exception&amp;#59;&lt;br /&gt;                    break&amp;#59;&lt;br /&gt;                case XmlSeverityType.Warning&amp;#58;&lt;br /&gt;                    _context.LogWarning&amp;#40;e.Message&amp;#41;&amp;#59;&lt;br /&gt;                    _validationException &amp;#61; e.Exception&amp;#59;&lt;br /&gt;                    break&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            &amp;#47;&amp;#47;Added Code for Validation&lt;br /&gt;            throw new XmlException&amp;#40;&amp;#34;XML data is not valid.&amp;#34;&amp;#43;e.Message&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;Code Ended&lt;/p&gt;&lt;p&gt;        &amp;#125;&lt;/p&gt;</description><author>desanghi</author><pubDate>Thu, 03 May 2012 08:37:20 GMT</pubDate><guid isPermaLink="false">Commented Issue: XmlValidationStep not failing when wrong schema is specified [17602] 20120503083720A</guid></item><item><title>Created Issue: XmlValidationStep not failing when wrong schema is specified [17602]</title><link>http://bizunit.codeplex.com/workitem/17602</link><description>When a schema is specified which is complete mismatch for the xml document, the XmlValidationStep succeeds. &lt;br /&gt;&lt;br /&gt;According to the MSDN specification for XmlReaderSettings a warning event is only fired when the &lt;br /&gt;XmlSchemaValidationFlags.ReportValidationWarnings has been set&amp;#58;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.xml.xmlreadersettings.validationflags.aspx&lt;br /&gt;&lt;br /&gt;The fix is to set this attribute on the XmlReaderSettings &amp;#40;in method ValidateXmlInstance in class XmlValidationStep&amp;#41;&amp;#58;&lt;br /&gt;settings.ValidationFlags &amp;#124;&amp;#61; XmlSchemaValidationFlags.ReportValidationWarnings&amp;#59;&lt;br /&gt;</description><author>shundeide</author><pubDate>Wed, 14 Mar 2012 13:11:40 GMT</pubDate><guid isPermaLink="false">Created Issue: XmlValidationStep not failing when wrong schema is specified [17602] 20120314011140P</guid></item><item><title>Created Issue: FactBasedRuleEngineStep not passing facts to PolicyTester [17506]</title><link>http://bizunit.codeplex.com/workitem/17506</link><description>I&amp;#39;m using BizUnit 4.0 &amp;#40;4.0.154.0&amp;#41; to create unit tests for my BRE policies. Unfortunately when the test is executed, I receive an exception &amp;#34;BizUnit.TestStepExecutionException&amp;#58; BizUnit encountered an error executing a test step ---&amp;#62; System.NullReferenceException&amp;#58; Object reference not set to an instance of an object.&amp;#34;&lt;br /&gt;&lt;br /&gt;I tracked this down to the FactBasedRuleEngineStep, in particular it appears to be because the Execute method uses a switch statement based on currentFact.GetType&amp;#40;&amp;#41;.ToString&amp;#40;&amp;#41; to determine how to create and pass BRE facts to the PolicyTester, but the specific cases look like they expect only the type&amp;#39;s Name &amp;#40;eg &amp;#34;ObjectFact&amp;#34;&amp;#41;, not its Fullname &amp;#40;eg &amp;#34;BizUnit.TestSteps.BizTalk.Bre.ObjectFact&amp;#34;&amp;#41; which is what ToString&amp;#40;&amp;#41; returns... hence no cases in the switch statement match, and no facts are passed into the PolicyTester.&lt;br /&gt;</description><author>turkeys_united</author><pubDate>Wed, 29 Feb 2012 03:14:48 GMT</pubDate><guid isPermaLink="false">Created Issue: FactBasedRuleEngineStep not passing facts to PolicyTester [17506] 20120229031448A</guid></item><item><title>Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351]</title><link>http://bizunit.codeplex.com/workitem/17351</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am writing unit test for BizTalk 2010 application using BizUnit4.0 framework. The unit test is written for testing to check file is received at the output fileshare.  I am getting the below error  &amp;#34;System.ApplicationException&amp;#58; Directory does not contain the correct number of files&amp;#33;&lt;br /&gt; Found&amp;#58; 0 files matching the pattern &amp;#34;. &lt;br /&gt;But the same test passes while i am debugging via BizUnit source code. I have tried specifing the timeout via .Timeout and increased it to 3 minutes. But still no luck.&lt;br /&gt;&lt;br /&gt;Any help is greatly apprecieated.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Basawa&lt;br /&gt;Comments: ** Comment from web user: basawa_raj ** &lt;p&gt;Sorry this not the issue , i have mistakely created in the Issue Trakcer&lt;/p&gt;</description><author>basawa_raj</author><pubDate>Fri, 03 Feb 2012 18:55:32 GMT</pubDate><guid isPermaLink="false">Commented Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351] 20120203065532P</guid></item><item><title>Created Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351]</title><link>http://bizunit.codeplex.com/workitem/17351</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am writing unit test for BizTalk 2010 application using BizUnit4.0 framework. The unit test is written for testing to check file is received at the output fileshare.  I am getting the below error  &amp;#34;System.ApplicationException&amp;#58; Directory does not contain the correct number of files&amp;#33;&lt;br /&gt; Found&amp;#58; 0 files matching the pattern &amp;#34;. &lt;br /&gt;But the same test passes while i am debugging via BizUnit source code. I have tried specifing the timeout via .Timeout and increased it to 3 minutes. But still no luck.&lt;br /&gt;&lt;br /&gt;Any help is greatly apprecieated.&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Basawa&lt;br /&gt;</description><author>basawa_raj</author><pubDate>Fri, 03 Feb 2012 18:49:25 GMT</pubDate><guid isPermaLink="false">Created Issue: ExistsStep.SeachPattern Error:Directory does not contain the correct number of files!Found: 0 files matching the pattern [17351] 20120203064925P</guid></item><item><title>Commented Issue: [Feature Request] Multiple Validation Steps [15903]</title><link>http://bizunit.codeplex.com/workitem/15903</link><description>I would be keen to have the ability to run multiple validation sub-steps for a test step.  For example, I have an MSMQ read step.  Against this message data I would like to run&amp;#58; the Xml Schema validation test step to ensure the whole message is valid against schema&amp;#59; and a also run a custom validation step that test certain parts of the message against business rules.&lt;br /&gt;Comments: ** Comment from web user: charliemott ** &lt;p&gt;Top Tip.  In a BizUnit version 4 Sub Steps, reset the poistion of the steam in the Execute method after use.  The steam will then be available to subsequent sub steps.&lt;/p&gt;&lt;p&gt;        public override Stream Execute&amp;#40;Stream data, Context context&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#60; validation logic here&amp;#62;            &lt;br /&gt;            data.Position &amp;#61; 0&amp;#59; &amp;#47;&amp;#47; reset position so stream is available to subsequent sub-steps.&lt;br /&gt;            return data&amp;#59;&lt;br /&gt;        &amp;#125;&lt;/p&gt;</description><author>charliemott</author><pubDate>Fri, 06 Jan 2012 16:28:05 GMT</pubDate><guid isPermaLink="false">Commented Issue: [Feature Request] Multiple Validation Steps [15903] 20120106042805P</guid></item><item><title>Created Issue: FactBasedRuleEngineStep not executing validation steps [16985]</title><link>http://bizunit.codeplex.com/workitem/16985</link><description>Version 3.1.1001.0.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve noticed that no XML validation was being done on my BRE tests in BizUnit.  Upon further investigation, I noticed this in FactBasedRuleEngineStep.cs from the source &amp;#40;starts at line 240&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#47;&amp;#47; Validate if configured...&lt;br /&gt;&amp;#47;&amp;#47; HACK&amp;#58; We need to prevent ExecuteValidator for &amp;#47;each&amp;#47; TypedXmlDocument&lt;br /&gt;if &amp;#40;txd.DocumentType &amp;#61;&amp;#61; &amp;#34;UBS.CLAS.PoC.Schemas.INSERTS&amp;#34;&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;context.ExecuteValidator&amp;#40;data, validationConfig&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;Was this intentional&amp;#63;  How can I get validation to work on rules tests&amp;#63;&lt;br /&gt;</description><author>ChrisRomp</author><pubDate>Wed, 30 Nov 2011 20:32:24 GMT</pubDate><guid isPermaLink="false">Created Issue: FactBasedRuleEngineStep not executing validation steps [16985] 20111130083224P</guid></item><item><title>Commented Issue: FilePathsToDelete Error [16262]</title><link>http://bizunit.codeplex.com/workitem/16262</link><description>Below my code&amp;#58;            &lt;br /&gt;&lt;br /&gt;var delete &amp;#61; new DeleteStep&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;delete.FilePathsToDelete.Add&amp;#40;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;Test&amp;#92;&amp;#92;Out&amp;#92;&amp;#92;&amp;#42;.xml&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;delete.Execute&amp;#40;new Context&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;I am getting &amp;#34;Object reference not set to an instance of an object.&amp;#34; error in line 2.  What am I doing wrong&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;Comments: ** Comment from web user: TychoLien ** &lt;p&gt;Change your code to&amp;#58;&lt;/p&gt;&lt;p&gt;var delete &amp;#61; new DeleteStep&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;var filePathsToDelete &amp;#61; new Collection&amp;#60;string&amp;#62; &amp;#123;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;Test&amp;#92;&amp;#92;Out&amp;#92;&amp;#92;&amp;#42;.xml&amp;#34;&amp;#125;&amp;#59;&lt;/p&gt;&lt;p&gt;delete.FilePathsToDelete &amp;#61; filePathsToDelete&amp;#59;&lt;br /&gt;delete.Execute&amp;#40;new Context&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;That&amp;#39;ll work&lt;/p&gt;</description><author>TychoLien</author><pubDate>Fri, 19 Aug 2011 10:14:22 GMT</pubDate><guid isPermaLink="false">Commented Issue: FilePathsToDelete Error [16262] 20110819101422A</guid></item><item><title>Created Issue: FilePathsToDelete Error [16262]</title><link>http://bizunit.codeplex.com/workitem/16262</link><description>Below my code&amp;#58;            &lt;br /&gt;&lt;br /&gt;var delete &amp;#61; new DeleteStep&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;delete.FilePathsToDelete.Add&amp;#40;&amp;#34;C&amp;#58;&amp;#92;&amp;#92;Test&amp;#92;&amp;#92;Out&amp;#92;&amp;#92;&amp;#42;.xml&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;delete.Execute&amp;#40;new Context&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;I am getting &amp;#34;Object reference not set to an instance of an object.&amp;#34; error in line 2.  What am I doing wrong&amp;#63;&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;</description><author>mkonda</author><pubDate>Mon, 18 Jul 2011 22:10:43 GMT</pubDate><guid isPermaLink="false">Created Issue: FilePathsToDelete Error [16262] 20110718101043P</guid></item></channel></rss>