<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-9023944205100803414.post9154184862054294895..comments</id><updated>2008-12-15T06:40:09.276-08:00</updated><title type='text'>Comments on Bits in Motion: Announcing Gallio v3.0 Alpha 2</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.bits-in-motion.com/feeds/9154184862054294895/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html'/><author><name>Jeff Brown</name><uri>http://www.blogger.com/profile/09075745057339916352</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-6765969770897369602</id><published>2008-12-15T06:40:00.000-08:00</published><updated>2008-12-15T06:40:00.000-08:00</updated><title type='text'>I'm using TypeMock 5.1 for my project. Works fine ...</title><content type='html'>I'm using TypeMock 5.1 for my project. Works fine in VS, but when I'm running the Gallio task with RunnerType="TypeMock" the ReturnRecursiveFakes doesn't seem to work. This is most likely because this is a new feature.&lt;BR/&gt;&lt;BR/&gt;How do I make Gallio run under the current 5.1 version of TypeMock?&lt;BR/&gt;(tried to upgrade the TypeMock.Integration.dll in the Gallio distribution).</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/6765969770897369602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/6765969770897369602'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1229352000000#c6765969770897369602' title=''/><author><name>Mads Nissen</name><uri>http://www.blogger.com/profile/01230806192383031731</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-3273296597568453606</id><published>2008-08-21T17:16:00.000-07:00</published><updated>2008-08-21T17:16:00.000-07:00</updated><title type='text'>Would you mind explaining the NCover integration a...</title><content type='html'>Would you mind explaining the NCover integration a bit more?&lt;BR/&gt;&lt;BR/&gt;I don't know if you use ReSharper, but I'm curious if this is a backdoor way to get NCover to work with it.</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/3273296597568453606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/3273296597568453606'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1219364160000#c3273296597568453606' title=''/><author><name>Tisker</name><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-2606426106517949701</id><published>2008-04-04T11:56:00.000-07:00</published><updated>2008-04-04T11:56:00.000-07:00</updated><title type='text'>You just need an abstract test class:http://code.g...</title><content type='html'>You just need an abstract test class:&lt;BR/&gt;&lt;BR/&gt;http://code.google.com/p/mb-unit/source/browse/trunk/v3/src/Gallio/Gallio.Tests/Reflection/BaseReflectionPolicyTest.cs&lt;BR/&gt;&lt;BR/&gt;And one or more concrete subclass:&lt;BR/&gt;&lt;BR/&gt;http://code.google.com/p/mb-unit/source/browse/trunk/v3/src/Gallio/Gallio.Tests/Reflection/NativeReflectionPolicyTest.cs&lt;BR/&gt;&lt;BR/&gt;http://code.google.com/p/mb-unit/source/browse/trunk/v3/src/Extensions/ReSharper/Gallio.ReSharperRunner.Tests/Reflection/MetadataReflectionPolicyTest.cs&lt;BR/&gt;&lt;BR/&gt;http://code.google.com/p/mb-unit/source/browse/trunk/v3/src/Extensions/ReSharper/Gallio.ReSharperRunner.Tests/Reflection/PsiReflectionPolicyTest.cs&lt;BR/&gt;&lt;BR/&gt;&lt;BR/&gt;In the small, the pattern looks a bit like this:&lt;BR/&gt;&lt;BR/&gt;public abstract class Foo&lt;BR/&gt;{&lt;BR/&gt;    public abstract ISomeType Object { get; }&lt;BR/&gt;&lt;BR/&gt;    public void MyTest()&lt;BR/&gt;    {&lt;BR/&gt;        Assert.AreEqual(42, Object.DoSomething());&lt;BR/&gt;    }&lt;BR/&gt;}&lt;BR/&gt;&lt;BR/&gt;[TestFixture]&lt;BR/&gt;public class Bar&lt;BR/&gt;{&lt;BR/&gt;    public override ISomeType Object&lt;BR/&gt;    {&lt;BR/&gt;        get { return new ObjectOfMyType();&lt;BR/&gt;    }&lt;BR/&gt;}</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/2606426106517949701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/2606426106517949701'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1207335360000#c2606426106517949701' title=''/><author><name>Jeff Brown</name><uri>http://www.blogger.com/profile/09075745057339916352</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='03263874364951229913'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-4404798791301487212</id><published>2008-04-04T10:53:00.000-07:00</published><updated>2008-04-04T10:53:00.000-07:00</updated><title type='text'>Can you give an example of doing the abstract test...</title><content type='html'>Can you give an example of doing the abstract test pattern in mbunit3 using testdriven.net plugin?</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/4404798791301487212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/4404798791301487212'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1207331580000#c4404798791301487212' title=''/><author><name>blsYAHU</name><uri>http://www.blogger.com/profile/05553071198046693232</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-1989824534254911127</id><published>2008-03-29T10:35:00.000-07:00</published><updated>2008-03-29T10:35:00.000-07:00</updated><title type='text'>I just played a bit with Icarus and its really coo...</title><content type='html'>I just played a bit with Icarus and its really cool. Very nice GUI and test runner works quite well. Great job guys</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/1989824534254911127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/1989824534254911127'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1206812100000#c1989824534254911127' title=''/><author><name>Libor</name><uri>http://www.blogger.com/profile/00175495549626785804</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry><entry><id>tag:blogger.com,1999:blog-9023944205100803414.post-1667685073744460418</id><published>2008-03-25T11:41:00.000-07:00</published><updated>2008-03-25T11:41:00.000-07:00</updated><title type='text'>Fantastic! Congrats!</title><content type='html'>Fantastic! Congrats!</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/1667685073744460418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9023944205100803414/9154184862054294895/comments/default/1667685073744460418'/><link rel='alternate' type='text/html' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html?showComment=1206470460000#c1667685073744460418' title=''/><author><name>Glucose</name><uri>http://www.blogger.com/profile/04169067401548328137</uri><email>noreply@blogger.com</email></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.bits-in-motion.com/2008/03/announcing-gallio-v30-alpha-2.html' ref='tag:blogger.com,1999:blog-9023944205100803414.post-9154184862054294895' source='http://www.blogger.com/feeds/9023944205100803414/posts/default/9154184862054294895' type='text/html'/></entry></feed>