User mezoid - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:16:47Zhttp://stackoverflow.com/feeds/user/39532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1949610/c-how-can-i-catch-a-404/1949627#19496271Answer by mezoid for C#, how can I catch a 404?mezoid2009-12-22T22:30:00Z2009-12-22T22:55:26Z<p>I think if you catch a <a href="http://msdn.microsoft.com/en-us/library/system.net.webexception.status.aspx" rel="nofollow">WebException</a> there is some information in there that you can use to determine if it was a 404. That's the only way I know of at the moment...I'd be interested in knowing any others...</p>
<pre><code>catch(WebException e) {
if(e.Status == WebExceptionStatus.ProtocolError) {
var statusCode = (HttpWebResponse)e.Response).StatusCode);
var description = (HttpWebResponse)e.Response).StatusDescription);
}
}
</code></pre>
http://stackoverflow.com/questions/1303667/how-accurate-is-thread-sleeptimespan1How accurate is Thread.Sleep(TimeSpan)?mezoid2009-08-20T02:33:54Z2009-12-15T08:02:30Z
<p>I've come across a unit test that is failing intermittently because the time elapsed isn't what I expect it to be.</p>
<p>An example of what this test looks like is:</p>
<pre><code>Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
TimeSpan oneSecond = new TimeSpan(0, 0, 1);
for(int i=0; i<3; i++)
{
Thread.Sleep(oneSecond);
}
stopwatch.Stop();
Assert.GreaterOrEqual(stopwatch.ElapsedMilliseconds, 2999);
</code></pre>
<p>Most of the time this passes but it has failed on at least on one occasion failed because:</p>
<p>Expected: greater than or equal to 2999
But was: 2998</p>
<p>I don't understand how it could possibly be less than 3 seconds. Is there an accuracy issue with Thread.Sleep or maybe Stopwatch that I'm not aware of?</p>
<p>Just as an update to some of the questions below. The scenario that is being unit tested is a class that allow's one to call a method to perform some action and if it fails wait a second and recall that method. The test shown above is just an approximation of what is happening.</p>
<p>Say I wanted to call a method DoSomething()...but in the event of an exception being thrown by DoSomething() I want to be able to retry calling it up to a maximum of 3 times but wait 1 second between each attempt. The aim of the unit test, in this case, is to verify that when we requested 3 retries with 1 second waits between each retry that the total time taken is greater than 3 seconds.</p>
http://stackoverflow.com/questions/1892532/is-this-the-correct-way-to-use-and-test-a-class-that-makes-use-of-the-factory-pat0Is this the correct way to use and test a class that makes use of the factory pattern?mezoid2009-12-12T06:13:07Z2009-12-12T15:18:09Z
<p>I don't have a lot of experience with the factory pattern and I've come across a scenario where I believe it is necessary but I'm not sure the I've implemented the pattern correctly and I'm concerned about the impact it's had on the readability of my unit tests.</p>
<p>I've created a code snippet that approximates (from memory) the essence of the scenario I am working on at work. I'd really appreciate it if someone could take a look at it and see if what I've done seems reasonable.</p>
<p>This is the class I need to test:</p>
<pre><code>public class SomeCalculator : ICalculateSomething
{
private readonly IReducerFactory reducerFactory;
private IReducer reducer;
public SomeCalculator(IReducerFactory reducerFactory)
{
this.reducerFactory = reducerFactory;
}
public SomeCalculator() : this(new ReducerFactory()){}
public decimal Calculate(SomeObject so)
{
reducer = reducerFactory.Create(so.CalculationMethod);
decimal calculatedAmount = so.Amount * so.Amount;
return reducer.Reduce(so, calculatedAmount);
}
}
</code></pre>
<p>Here are some of the basic interface definitions...</p>
<pre><code>public interface ICalculateSomething
{
decimal Calculate(SomeObject so);
}
public interface IReducerFactory
{
IReducer Create(CalculationMethod cm);
}
public interface IReducer
{
decimal Reduce(SomeObject so, decimal amount);
}
</code></pre>
<p>This is the factory I've created. My current requirements have had me add a specific Reducer MethodAReducer to be used in a particular scenario which is why I'm trying to introduce a factory.</p>
<pre><code>public class ReducerFactory : IReducerFactory
{
public IReducer Create(CalculationMethod cm)
{
switch(cm.Method)
{
case CalculationMethod.MethodA:
return new MethodAReducer();
break;
default:
return DefaultMethodReducer();
break;
}
}
}
</code></pre>
<p>These are approximations of the two implementations... The essence of the implementation is that it only reduces the amount if the object is in a particular state.</p>
<pre><code>public class MethodAReducer : IReducer
{
public decimal Reduce(SomeObject so, decimal amount)
{
if(so.isReductionApplicable())
{
return so.Amount-5;
}
return amount;
}
}
public class DefaultMethodReducer : IReducer
{
public decimal Reduce(SomeObject so, decimal amount)
{
if(so.isReductionApplicable())
{
return so.Amount--;
}
return amount;
}
}
</code></pre>
<p>This is the test fixture I am using. What has concerned me is how much space in the tests the factory pattern has taken up and how it appears to reduce the readability of the test. Please keep in mind that in my real world class I have several dependencies that I need to mock out which means that the tests here are several lines shorter than the ones needed for my real world test.</p>
<pre><code>[TestFixture]
public class SomeCalculatorTests
{
private Mock<IReducerFactory> reducerFactory;
private SomeCalculator someCalculator;
[Setup]
public void Setup()
{
reducerFactory = new Mock<IReducerFactory>();
someCalculator = new SomeCalculator(reducerFactory.Object);
}
[Teardown]
public void Teardown(){}
</code></pre>
<p>First test</p>
<pre><code> //verify that we can calculate an amount
[Test]
public void Calculate_CalculateTheAmount_ReturnsTheAmount()
{
decimal amount = 10;
decimal expectedAmount = 100;
SomeObject so = new SomeObjectBuilder()
.WithCalculationMethod(new CalculationMethodBuilder())
.WithAmount(amount);
Mock<IReducer> reducer = new Mock<IReducer>();
reducer
.Setup(p => p.Reduce(so, expectedAmount))
.Returns(expectedAmount);
reducerFactory
.Setup(p => p.Create(It.IsAny<CalculationMethod>))
.Returns(reducer);
decimal actualAmount = someCalculator.Calculate(so);
Assert.That(actualAmount, Is.EqualTo(expectedAmount));
}
</code></pre>
<p>Second test</p>
<pre><code> //Verify that we make the call to reduce the calculated amount
[Test]
public void Calculate_CalculateTheAmount_ReducesTheAmount()
{
decimal amount = 10;
decimal expectedAmount = 100;
SomeObject so = new SomeObjectBuilder()
.WithCalculationMethod(new CalculationMethodBuilder())
.WithAmount(amount);
Mock<IReducer> reducer = new Mock<IReducer>();
reducer
.Setup(p => p.Reduce(so, expectedAmount))
.Returns(expectedAmount);
reducerFactory
.Setup(p => p.Create(It.IsAny<CalculationMethod>))
.Returns(reducer);
decimal actualAmount = someCalculator.Calculate(so);
reducer.Verify(p => p.Reduce(so, expectedAmount), Times.Once());
}
}
</code></pre>
<p>So does all of that look right? Or is there a better way to use the factory pattern?</p>
http://stackoverflow.com/questions/1856994/how-do-i-get-the-uri-that-threw-a-webexception0How do I get the URI that threw a WebException?mezoid2009-12-06T23:24:18Z2009-12-06T23:48:33Z
<p>I'm calling a method on a webservice and it is throwing a 403 Forbidden WebException...</p>
<blockquote>
<p>System.Net.WebException: The request
failed with HTTP status 403:
Forbidden.</p>
</blockquote>
<p>I've got this error logged but I'd really like to have the URI recorded in the log message so it is easy to determine which webservice is causing the problem.</p>
<p>Is there a simple way to get the URI from the WebException that is thrown? I've looked through the list of properties and I can't see anything that will get me what I want.</p>
http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-do/1781318#178131822Answer by mezoid for Website hacking - Why it is always possible to do?mezoid2009-11-23T05:53:46Z2009-11-23T05:53:46Z<p>Yes it is always possible to do. There is always a way in.</p>
<p>It's like my grandfather always said: </p>
<blockquote>
<p>Locks are meant to keep the honest
people out</p>
</blockquote>
http://stackoverflow.com/questions/1773457/build-status-hardware/1773522#17735221Answer by mezoid for Build status hardwaremezoid2009-11-20T22:00:39Z2009-11-21T11:07:49Z<p>Maybe you could try an <a href="http://www.ambientdevices.com/cat/orb/orborder.html" rel="nofollow">Ambient</a> <a href="http://www.ambientdevices.com/developer/OrbWDK.pdf" rel="nofollow">Orb</a> as <a href="http://blogs.msdn.com/mswanson/articles/169058.aspx" rel="nofollow">suggested by this article</a>.
<img src="http://www.ambientdevices.com/cat/images/GreenOrb%5Fonwhite.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/1760755#17607550Answer by mezoid for What's the least useful comment you've ever seen?mezoid2009-11-19T03:43:49Z2009-11-19T03:43:49Z<p>Just found this one today...</p>
<pre><code>// TODO: this is basically a copy of the code at line 743!!!
</code></pre>
http://stackoverflow.com/questions/1656831/does-any-one-know-of-any-apex-refactoring-tools1Does any one know of any APEX refactoring tools?mezoid2009-11-01T10:29:41Z2009-11-07T20:56:32Z
<p>The company that owns the company that I work for has recently decided unilaterally that the salesforce.com and force.com platform are where we are headed. Currently, we're a C# .NET shop and we frequently use Visual Studio and Resharper in our daily work.</p>
<p>I'm not happy about this decision but, like any good developer, I'm willing to give it a chance and investigate this new technology to see what things might be like if I'm forced to make the decision to transition from a .NET to a APEX developer. So far, I must admit to not being all that impressed with the Force.com platform. To be fair, there are somethings that seem quite ok...but other things just suck...just look at their ideas on what constitute <a href="http://wiki.developerforce.com/index.php/How%5Fto%5FWrite%5FGood%5FUnit%5FTests" rel="nofollow">good</a> <a href="http://www.salesforce.com/us/developer/docs/apexcode/salesforce%5Fapex%5Flanguage%5Freference.pdf" rel="nofollow">unit tests</a>.... Luckily, those sort of mistakes are something I can avoid by actually writing proper unit tests regardless of how much the people behind salesforce.com's documentation suck....</p>
<p>However, and sorry for the rant (I just really needed to get that off my chest), the one thing that I've found missing that I know I'd really miss is a good refactoring tool like Resharper. As a .NET developer, Resharper makes it possible to do a lot of heavy lifting that I would otherwise be hesitant to do. It also makes developing TDD style much easier cause I can easily create new methods and properties with just a few keystrokes. As such, I'm on the lookout for any sort of refactoring tool that is available for Eclipse and the APEX programming language. I've downloaded and installed the tools recommended by the force.com developers site but so far I have seen very little in the way of refactoring support.</p>
<p>Does anyone know of the existence of any refactoring tools for use with the APEX programming language?</p>
http://stackoverflow.com/questions/1678045/how-do-i-get-started-with-unit-testing-total-n00b-question-thoughts/1678328#16783280Answer by mezoid for How do I get started with Unit Testing? Total n00b question, thoughts?mezoid2009-11-05T04:19:47Z2009-11-05T04:19:47Z<p>For the first bit of code you'll want to look into introducing Dependency Inversion so that you can mock out those dependencies and control when the method returns true and when it returns false.</p>
<p>For the second I'd create some NUnit tests that each pass in either valid or invalid emails and verify that the correct result is returned. You do this by either creating one test per email you're wanting to test or creating one test as a row-test (which is possible with NUnit 2.5+).</p>
<p>As for where the tests should live....well they can live in the same assembly or in another assembly... Best practice, at the moment, seems to be to put them in a separate assembly. If you have a project called MyProject you then create a project for your unit tests called MyProject.Tests....and as an added extra it's good to put your integration tests in another assembly called MyProject.Integration.Tests.</p>
http://stackoverflow.com/questions/456154/how-do-i-determine-why-a-webservice-reference-is-being-prevented-from-being-added2How do I determine why a webservice reference is being prevented from being added to my project in VS2008?mezoid2009-01-18T23:53:33Z2009-11-04T10:40:27Z
<p>I have a VS2005 project that contains a couple web service references. The project has recently been upgraded to VS2008 but now there is a problem with the web references...probably because they may not have been upgraded properly.</p>
<p>When I select Update Web Reference I get the following error:</p>
<p>"Value cannot be null. Parameter name: discoveryError % mexError" which is very helpful.</p>
<p>I've then deleted the web reference with the intent of re-adding it...</p>
<p>The Add Web Reference dialog comes up and successfully loads information about each of the methods associated with the web service.</p>
<p>However, I can't add the reference as the button to do so is grayed out and there is a text box titled "Web services found at this URL:" which contains the text "Operation is not valid due to the current state of the object".</p>
<p>Now finally, this brings me to my main question... How then do I add this web reference? Or better yet, how do I find out what is invalid about the "current state of the object"?</p>
<p>Has anyone had a similar experience in VS2008?</p>
http://stackoverflow.com/questions/1447601/is-resharpers-recommendation-to-make-my-private-method-static-a-good-recommendat2Is Resharper's recommendation to make my private method static a good recommendation?mezoid2009-09-19T02:57:22Z2009-11-02T14:15:38Z
<p>I've recently noticed that when I create private methods that set a few fields in the objects passed to them that Resharper puts up a hint stating that the method can be made static.</p>
<p>Here's a greatly simplified example of the sort of method I might have.</p>
<pre><code>private void MakeStatusTheSame(MyClass mc, MySecondClass msc)
{
mc.Status = msc.Status;
}
</code></pre>
<p>When I've got a method like this, Resharper provides a recommendation that the method can be made static.</p>
<p>I try to avoid making public methods static since they wreck havoc on unit tests...but I'm not sure that the same applies for private methods.</p>
<p>Is Resharper's recommendation a valid best practice or should I just turn it off?</p>
http://stackoverflow.com/questions/1643017/how-do-i-find-the-revision-that-changed-a-line-in-my-code-using-tortoisesvn/1643038#16430385Answer by mezoid for How do I find the revision that changed a line in my code using TortoiseSvn?mezoid2009-10-29T11:22:00Z2009-10-29T11:37:06Z<p>What you want to do is do a <a href="http://tortoisesvn.tigris.org/blame.html" rel="nofollow">Blame</a> on that source file and it will show you the revisions that changed each of the lines of code.</p>
<p>I'm not aware of any command that would be able to give you all revisions for a given line of code...what you can do is do a show log on a single file and then look at each of the revisions that took place over time.</p>
http://stackoverflow.com/questions/1643046/collections-items-to-remember/1643077#16430770Answer by mezoid for Collections - Items to Remember mezoid2009-10-29T11:29:35Z2009-10-29T11:29:35Z<p>Which ones you need to be familiar with depend on what you need to do.</p>
<p>If you want to find out about collection classes then check out the <a href="http://msdn.microsoft.com/en-us/library/system.collections%28VS.80%29.aspx" rel="nofollow">System Collections page on MSDN</a>.</p>
<p>In my mind it is good to be aware of anything that implements ICollection, IDictionary, IEnumerable, and IList.</p>
http://stackoverflow.com/questions/1635434/unit-tests-dry-vs-predictability/1635461#16354612Answer by mezoid for Unit Tests: DRY vs. Predictabilitymezoid2009-10-28T06:16:34Z2009-10-28T06:16:34Z<p>While DRY is applicable to production code it isn't always applicable to unit tests. You really want each test to be independent of each other and often that means repeating yourself. On the other hand, I do find it useful to group certain things into helper methods that are used by all tests as long as it doesn't couple the tests together then it should be fine. One place I usually reduce duplication is by using test data builders to construct objects that exist in a particular state in my test.</p>
<p>My rule of thumb is to keep my tests as small and as readable as possible. If using DRY can help achieve that then I use it. If not, then I don't. :-)</p>
<p>Hope that helps. I'm not a world expert at unit testing so I could be very wrong. :-)</p>
http://stackoverflow.com/questions/351557/how-does-one-insert-a-column-into-a-dataset-between-two-existing-columns3How does one insert a column into a dataset between two existing columns?mezoid2008-12-09T01:51:42Z2009-10-27T13:29:06Z
<p>I'm trying to insert a column into an existing DataSet using C#.</p>
<p>As an example I have a DataSet defined as follows:</p>
<pre><code>DataSet ds = new DataSet();
ds.Tables.Add(new DataTable());
ds.Tables[0].Columns.Add("column_1", typeof(string));
ds.Tables[0].Columns.Add("column_2", typeof(int));
ds.Tables[0].Columns.Add("column_4", typeof(string));
</code></pre>
<p>later on in my code I am wanting to insert a column between column 2 and column 4.</p>
<p>DataSets have methods for adding a column but I can't seem to find the best way in insert one.</p>
<p>I'd like to write something like the following...</p>
<pre><code>...Columns.InsertAfter("column_2", "column_3", typeof(string))
</code></pre>
<p>The end result should be a data set that has a table with the following columns:
column_1 column_2 column_3 column_4</p>
<p>rather than:
column_1 column_2 column_4 column_3 which is what the add method gives me</p>
<p>surely there must be a way of doing something like this.</p>
<p><strong>Edit</strong>...Just wanting to clarify what I'm doing with the DataSet based on some of the comments below:</p>
<blockquote>
<p>I am getting a data set from a stored
procedure. I am then having to add
additional columns to the data set
which is then converted into an Excel
document. I do not have control over
the data returned by the stored proc
so I have to add columns after the
fact.</p>
</blockquote>
http://stackoverflow.com/questions/1627442/better-to-use-stored-procedures-or-sql-in-my-code-for-working-with-data/1627446#16274460Answer by mezoid for Better to use Stored Procedures or SQL in my code for working with data?mezoid2009-10-26T21:33:13Z2009-10-26T21:33:13Z<p>if it comes down to writing sql in your code vs using stored procs then please use stored procs...they're at least a bit more secure.</p>
<p>With sql in your code, it looks messy and you really open yourself up to sql injection attacks.</p>
<p>On the other hand, unless you really need to use stored procs I'd recommend looking into using an ORM of some sort.</p>
http://stackoverflow.com/questions/1611414/how-to-shrink-html-string-size/1611428#16114281Answer by mezoid for How to shrink html string sizemezoid2009-10-23T04:52:00Z2009-10-23T06:42:45Z<p>Cutting the html down to size isn't a good idea because as you've stated you end up messing up the valid html. Instead, what you're wanting to do is cut down the size of the text description. To do that you'll need to extract the text you want to display and then cut it down to the size you want....</p>
<p>On the other hand, why not have whatever is generating the html first limit the size of the text to begin with. That way you don't need to worry about getting the text out of the html and cutting it down.</p>
<p>that said, it's kind of difficult to say anymore without a code sample...</p>
http://stackoverflow.com/questions/1610923/merge-tool-capable-of-merging-conflicting-changes0Merge tool capable of merging conflicting changesmezoid2009-10-23T01:16:19Z2009-10-23T01:27:37Z
<p>I'm currently using TortoiseSVN to do a merge of two branches and I've found that its not smart enough to handle a specific merging senario.</p>
<p>In one branch I have a method as follows:</p>
<pre><code>MyMethod(parameter1, parameter2, parameter3)
</code></pre>
<p>In the other branch I have the same method as follows:</p>
<pre><code>MyMethod(parameter1, parameter2, parameter4)
</code></pre>
<p>TortoiseMerge notices that there is a conflict but only gives me the option of using one method signature or the other. However, what I really want is to merge it into a single method with all four parameters as follows:</p>
<pre><code>MyMethod(parameter1, parameter2, parameter3, parameter4)
</code></pre>
<p>The only way I can get around this conflict at the moment is to resolve the line so that both methods are present and then manually go to the file and correct it after the conflict has been resolved.</p>
<p>Is this just the way things are or is there a smarter merge tool out there somewhere that would be able to handle this scenario?</p>
http://stackoverflow.com/questions/1610201/placing-business-rules-inside-a-repository/1610251#16102513Answer by mezoid for Placing Business Rules inside a Repositorymezoid2009-10-22T22:05:35Z2009-10-22T22:05:35Z<p>In my mind, a repository is purely about retrieving and storing information from a database and should be kept as pure as possible. I'd recommend putting the business logic in the classes that call the repository...your layers will be kept separate which will allow for easier reuse of the repository.</p>
<p>See these <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">nice</a> <a href="http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/10/08/the-repository-pattern.aspx" rel="nofollow">articles</a> about the repository pattern.</p>
http://stackoverflow.com/questions/1604067/asp-net-mvc-vs-asp-net-4-0/1604078#16040781Answer by mezoid for ASP.NET MVC vs. ASP.NET 4.0mezoid2009-10-21T22:43:39Z2009-10-21T22:43:39Z<p>Go with whichever makes the most business sense. We always feel like waiting for the next best thing...but if we did we'd never get anything accomplished.</p>
http://stackoverflow.com/questions/1594149/how-can-i-clone-or-copy-a-object-to-another-one-but-dont-copy-pk-attribute/1594173#15941731Answer by mezoid for How can I clone (or copy) a object to another one, but don't copy PK attribute??mezoid2009-10-20T12:13:33Z2009-10-20T12:13:33Z<p>Perhaps you might consider the following:</p>
<ol>
<li>Ensure Util.Clone(Person p) doesn't
copy the codPerson attribute </li>
<li>Clear the attribute after the Clone method
is called</li>
<li>Create a new Person object while specifically initializing specific properties.</li>
</ol>
http://stackoverflow.com/questions/1592672/what-term-is-used-to-describe-when-two-classes-depend-on-each-other0What term is used to describe when two classes depend on each other?mezoid2009-10-20T05:43:16Z2009-10-20T05:44:40Z
<p>I've got the following two classes in C#:</p>
<pre><code>public class MyFirstClass : IMyFirstClass
{
MySecondClass mySecondClass;
public MyFirstClass(IMySecondClass mySecondClass)
{
this.mySecondClass = mySecondClass;
}
public MyFirstClass() : this(new MySecondClass()){}
}
public class MySecondClass : IMySecondClass
{
MyFirstClass myFirstClass;
public MySecondClass(IMyFirstClass myFirstClass)
{
this.myFirstClass = myFirstClass;
}
public MySecondClass() : this(new MyFirstClass()){}
}
</code></pre>
<p>You'll notice that when the default constructor for either of these classes is instantiated that the system will crash because of the infinite instantiations that need to take place.</p>
<p>Is there an official term that is used to describe this problem?</p>
http://stackoverflow.com/questions/1592575/does-fluent-hibernate-exist/1592589#15925895Answer by mezoid for Does Fluent-Hibernate exist?mezoid2009-10-20T05:11:38Z2009-10-20T05:11:38Z<p>I believe Fluent-NHibernate relies on the nice features provided by Linq in C#3.0 if I'm not mistaken. Until Java implements lambda expressions etc I don't think we'll see Fluent Hibernate.</p>
<p>I could be wrong though. :)</p>
http://stackoverflow.com/questions/1591836/c-storing-a-short-date-in-a-datetime-object/1591886#15918860Answer by mezoid for C#; storing a short date in a DateTime objectmezoid2009-10-20T00:35:46Z2009-10-20T00:35:46Z<p>You might not be able to get it as a DateTime object...but when you want to display it you can format it in the way you want by doing something like.</p>
<p>myDateTime.ToString("M/d/yyyy") which gives 10/19/2009 for your example.</p>
http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000/1587601#15876015Answer by mezoid for How to get VisualStudio 2010 cool tools without spending $12,000mezoid2009-10-19T08:51:28Z2009-10-19T08:51:28Z<p>Like you've said, some of the tools are just copies of other tools that are already available in the market. If I were in your position I'd be looking at getting a version of Visual Studio that's covers all the basics a professional .net developer needs and then look at alternative tools. There are heaps of great open source and commercial tools that do an excellent job for free or for a reasonable price.</p>
<p>The best part about third party tools, in my opinion, is that they tend to be able to improve and adapt quicker than the standard Visual Studio release cycle. Things like continuous integration servers, unit testing frameworks, mocking/isolation frameworks, source control etc are often best done by third party tools so that as things change in the industry you can adapt your tools without having to wait for Microsoft.</p>
http://stackoverflow.com/questions/1552478/c-how-to-dump-all-variables-current-values-during-runtime/1552490#15524901Answer by mezoid for C# How to dump all variables & current values during runtimemezoid2009-10-12T03:00:56Z2009-10-12T03:12:11Z<p>I believe some sort of logging framework would help you to do that...</p>
<p>Check out:</p>
<p><a href="http://www.dotnetlogging.com/" rel="nofollow">http://www.dotnetlogging.com/</a></p>
<p>At my workplace we use <a href="http://logging.apache.org/log4net/" rel="nofollow">log4net</a> which works pretty well for us.</p>
<p>So how come you're wanting to dump out all the variables for later analysis? Have you considered writing your code test first so that you can reduce your reliance on the debugger and have a suite of automated test checking the values for you?</p>
http://stackoverflow.com/questions/1547252/how-do-i-concatenate-two-arrays-in-c/1547273#15472730Answer by mezoid for How do I concatenate two arrays in C#?mezoid2009-10-10T07:05:53Z2009-10-10T07:05:53Z<p>For int[] what you've done looks good to me. <a href="http://stackoverflow.com/questions/1547252/how-do-i-concatenate-two-arrays-in-c/1547267#1547267">astander's</a> answer would also work well for <code>List<int></code>.</p>
http://stackoverflow.com/questions/1309571/is-it-possible-to-mock-out-time-in-a-unit-test4Is it possible to Mock out time in a unit test?mezoid2009-08-21T00:46:17Z2009-10-09T11:08:00Z
<p>Following on from <a href="http://stackoverflow.com/questions/1303667/how-accurate-is-thread-sleeptimespan">this</a> question...I'm trying to unit test the following scenario:</p>
<p>I have a class that allows one to call a method to perform some action and if it fails wait a second and recall that method. </p>
<p>Say I wanted to call a method DoSomething()...but in the event of an exception being thrown by DoSomething() I want to be able to retry calling it up to a maximum of 3 times but wait 1 second between each attempt. The aim of the unit test, in this case, is to verify that when we called DoSomething() 3 times with 1 second waits between each retry that the total time taken is >= 3 seconds.</p>
<p>Unfortunately, the only way I can think to test it, is to time it using a Stopwatch....which has two side effects... </p>
<ol>
<li>it takes 3 seconds to execute the test...and I usually like my tests to run in milliseconds</li>
<li>the amount of time to run the test varies by +/- 10ms or so which can cause the test to fail unless I take this variance into account.</li>
</ol>
<p>What would be nice is if there were a way to mock out this dependency on time so that my test is able to run quicker and be fairly consistent in it's results. Unfortunately, I can't think of a way to do so...and so I thought I'd ask and see if any of you out there have ever encountered this problem... </p>
http://stackoverflow.com/questions/1411190/ui-testing-tool/1502533#15025330Answer by mezoid for UI Testing Tool?mezoid2009-10-01T08:03:44Z2009-10-01T08:03:44Z<p>Like <a href="http://stackoverflow.com/users/9267/tom-e">Tom E</a> stated, do take caution while considering going down the record/playback path for test automation.</p>
<p>See Uncle Bob's article on <a href="http://blog.objectmentor.com/articles/2009/09/29/ruining-your-test-automation-strategy" rel="nofollow">Ruining your Test Automation Strategy</a>.</p>
<p>The main problem is that the record/playback tools couple the tests to the GUI which makes them very fragile.</p>
<p>Uncle Bob's article does point out that some testing needs to occur on the GUI...but that he recommends stubbing out the business rule code.</p>
<p>Sorry I can't provide you with a specific UI test automation tool...but hopefully this caveat will help you make the best decision on how to employ the tool that you eventually use.</p>
http://stackoverflow.com/questions/1497545/how-to-access-grouped-values-returned-by-a-linq-query1How to access grouped values returned by a linq querymezoid2009-09-30T11:25:42Z2009-09-30T22:50:42Z
<p>I've got the following code:</p>
<pre><code>List<Person> people = new List<Person>
{
new Person{ Id = 1, Name = "Bob"},
new Person{ Id = 2, Name = "Joe"},
new Person{ Id = 3, Name = "Bob"}
};
var peopleGroupedByName = from p in people
group p by p.Name;
//get all groups where the number of people in the group is > 1
</code></pre>
<p>For the life of me I can't figure out how to work with the values returned by the linq query to be able to then filter all of the groups that were returned so that I only have the groups that have more than one item in them.</p>
<p>At the moment I'm banging my head against a wall and I can't quite think of what keywords to use in a google search in order to figure it out for myself.</p>
<p>I'd really appreciate any help on how to do this in Linq cause it seems like it should be very simple to do.</p>
http://stackoverflow.com/questions/1892532/is-this-the-correct-way-to-use-and-test-a-class-that-makes-use-of-the-factory-pat/1892636#1892636Comment by mezoid on Is this the correct way to use and test a class that makes use of the factory pattern?mezoid2009-12-14T05:15:09Z2009-12-14T05:15:09ZI'm marking this as the answer because it pointed me in the right direction. I found that if I created my own FakeReducer instead of using Moq it cleaned up my unit test quite a bit. Also, after a few hours of working with the code this morning I was able to determine that I could get rid of the factory completely in the calculator I was trying to add it too. While that ended up rendering this advice not applicable, I found I learned a great deal about factories in the process and as such I'm happy to mark this one as the answer. Thanks Mark!http://stackoverflow.com/questions/1892532/is-this-the-correct-way-to-use-and-test-a-class-that-makes-use-of-the-factory-pat/1892636#1892636Comment by mezoid on Is this the correct way to use and test a class that makes use of the factory pattern?mezoid2009-12-12T11:02:57Z2009-12-12T11:02:57ZAlso, if I move the creation of the reducer factory to a method on the CalculationMethod class won't that just move the switch into that class?http://stackoverflow.com/questions/1892532/is-this-the-correct-way-to-use-and-test-a-class-that-makes-use-of-the-factory-pat/1892636#1892636Comment by mezoid on Is this the correct way to use and test a class that makes use of the factory pattern?mezoid2009-12-12T09:05:18Z2009-12-12T09:05:18ZThanks for the advice! I'm having a bit of trouble understanding some of it though...especially the third and fourth points. With the third, I thought the factory dependency is readonly. With the fourth, I don't have an IOC container at this point so then how will the factory get instantiated? The class that creates SomeCalculator in its default constructor would wind up with new SomeCalculator(new ReducerFactory()).http://stackoverflow.com/questions/1892532/is-this-the-correct-way-to-use-and-test-a-class-that-makes-use-of-the-factory-pat/1892628#1892628Comment by mezoid on Is this the correct way to use and test a class that makes use of the factory pattern?mezoid2009-12-12T08:29:28Z2009-12-12T08:29:28Zbut in the Calculate method the code that sets the reducer will be null if I don't set up the factory to return an IReducer...how do I get past that?http://stackoverflow.com/questions/1864216/soa-architecture-real-world-samples-with-netComment by mezoid on SOA Architecture Real-World Samples with .NETmezoid2009-12-08T02:32:10Z2009-12-08T02:32:10Zum...perhaps you should try google??? the sort of information you're after is more appropriate to a blog than a Q&A site...http://stackoverflow.com/questions/1856994/how-do-i-get-the-uri-that-threw-a-webexception/1857013#1857013Comment by mezoid on How do I get the URI that threw a WebException?mezoid2009-12-07T02:36:26Z2009-12-07T02:36:26ZI'm marking this one as the answer because I didn't realise the webservice had access to a Url property...and since my code had a wrapper around the webservice which didn't replicate the Url I had no access to it. I've change my code to give the Url on the wrapped webservice and made sure my try-catch is only around one service call.http://stackoverflow.com/questions/1856994/how-do-i-get-the-uri-that-threw-a-webexceptionComment by mezoid on How do I get the URI that threw a WebException?mezoid2009-12-06T23:35:27Z2009-12-06T23:35:27ZI've got one application that makes use of two webservices...http://stackoverflow.com/questions/1856994/how-do-i-get-the-uri-that-threw-a-webexceptionComment by mezoid on How do I get the URI that threw a WebException?mezoid2009-12-06T23:30:49Z2009-12-06T23:30:49ZMy method makes use of two webservices which can both throw a WebException....As such, I'd like to have access to the URI from the exception...http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/106173#106173Comment by mezoid on What's your favorite "programmer" cartoon?mezoid2009-12-06T22:01:30Z2009-12-06T22:01:30ZI'd like to know why the functions getCurrTime and isitaWorkday both either return void or their return value is never used....http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108637#108637Comment by mezoid on What is your single favorite development tool?mezoid2009-11-25T02:55:33Z2009-11-25T02:55:33ZJust a reminder for people to also consider voting for Resharper since Resharper makes a huge difference to the usefulness of Visual Studio.http://stackoverflow.com/questions/1774850/ramifications-of-virtual-methods-propertiesComment by mezoid on Ramifications of Virtual Methods/Propertiesmezoid2009-11-21T07:59:33Z2009-11-21T07:59:33Zhave you considered making your class implement an interface which defines all those methods? That way your Mock is based on the interface and you don't have to explicitly mark all your methods with the virtual keyword...http://stackoverflow.com/questions/1773457/build-status-hardware/1773522#1773522Comment by mezoid on Build status hardwaremezoid2009-11-20T22:41:30Z2009-11-20T22:41:30ZSorry to hear that pauloya. Perhaps you might want to google for something similar to how the Ambient Orb works....or you might want to consider macgyvering some sort of system together....it would be a challenge for sure but so much fun.http://stackoverflow.com/questions/1706655/all-characters-of-the-c-application-shown-as-square-character-in-only-one-computComment by mezoid on All characters of the c# application shown as square character in only one computermezoid2009-11-10T09:38:34Z2009-11-10T09:38:34ZDoes that machine have the correct font's and language settings installed?http://stackoverflow.com/questions/1706543/difference-between-linux-and-unix-and-what-exactly-is-aix/1706549#1706549Comment by mezoid on Difference between Linux and Unix? And what exactly is AIX?mezoid2009-11-10T09:19:02Z2009-11-10T09:19:02ZI see what you guys mean. I always assumed it was a fork...but reading up on the specifics on Wikipedia has taught me otherwise...I'll delete this answer cause I don't have the time to improve on what is freely available on Wikipediahttp://stackoverflow.com/questions/1656831/does-any-one-know-of-any-apex-refactoring-tools/1694389#1694389Comment by mezoid on Does any one know of any APEX refactoring tools?mezoid2009-11-08T02:44:45Z2009-11-08T02:44:45ZAt the moment, I'm afraid that is the current correct answer to this question. I'll accept this one as the answer until such a time as a refactoring tool becomes available.