I've just managed to get the latest version of Concordion to run my
tests. Now I'm wondering how I can get the actual html pages to show
up in the output directory. The tests all run (and fail) fine but
somehow there's no html output from Concordion.
I've embedded the HTML and CSS file in my assembly (which seems to
work) but I'm not copying them to the output directory. The blog post
here: http://living-in-concordion.blogspot.com/2009/05/your-first-concordionnet-project-part-3.html
seems to indicate that this should work.
My commandline is:
Gallio.Echo.exe /hd:"tools\MbUnit" /sc /pd:"tools\Concordion" /r:Local
/rd:"bin\reports" /v:Verbose /rt:XHtml-Condensed /rt:Xml-inline
"bin\build\Apollo.UI.Common.Test.Spec.dll"
Is there anything I'm missing?
Thanks
Patrick
--
You received this message because you are subscribed to the Google Groups "Concordion For .Net" group.
To post to this group, send email to concordio...@googlegroups.com.
To unsubscribe from this group, send email to concordion-for-...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/concordion-for-net?hl=en.
Thanks for that. I'll setup the config file and see what I get.
Patrick
I've created a config file (concordion.config) which looks like this:
<?xml version="1.0" encoding="utf-8" ?>
<Concordion>
<BaseOutputDirectory>PATH_GOES_HERE"</BaseOutputDirectory>
<Runners>
<Runner alias="runtestrunner"
type="Concordion.Spec.Concordion.Command.Run.RunTestRunner,
Concordion.Spec, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null" />
</Runners>
</Concordion>
And I've copied that into my bin directory (where all my assemblies
live). However for some reason there are no files in the output
directory. So I was wondering:
- Does the file need to be named concordion.config or does it need to
be named after my specification assembly?
- Do I have the correct config syntax. Some use of reflector suggests
that the BaseOutputDirectory node needs to have a path attribute?
- Anything else I've missed?
Thanks
Patrick
On Mon, Oct 4, 2010 at 23:19, Jeffrey Cameron <jeffrey...@gmail.com> wrote:
Does anybody have any suggestions for solving my configuration problem?
Thanks
Patrick
On Wed, Oct 6, 2010 at 23:51, Patrick van der Velde