active questions tagged assertions - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:44:36Zhttp://stackoverflow.com/feeds/tag/assertionshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846345/xunit-perform-all-assertions-in-one-test-method1Xunit: Perform all 'Assert'ions in one test method?Jörg Battermann2009-12-04T11:19:08Z2009-12-04T13:34:29Z
<p>Good afternoon,</p>
<p>is it possible to tell xunit.net to perform all e.g. Assert.True() in one test method? Basically in some of our use/testcases all assertions belong logically to one and the same 'scope' of tests and I have e.g. something like this:</p>
<pre><code> [Fact(DisplayName = "Tr-MissImpl")]
public void MissingImplementationTest()
{
// parse export.xml file
var exportXml = Libraries.Utilities.XML.GenericClassDeserializer.DeserializeXmlFile<Libraries.MedTrace.ExportXml>(
ExportXmlFile);
// compare parsed results with expected ones
Assert.True(exportXml.ContainsRequirementKeyWithError("PERS_154163", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("PERS_155763", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("PERS_155931", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("PERS_157145", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("s_sw_ers_req_A", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("s_sw_ers_req_C", "E0032A"));
Assert.True(exportXml.ContainsRequirementKeyWithError("s_sw_ers_req_D", "E0032A"));
}
</code></pre>
<p>Now if e.g. the first Assert.True(...) fails, the other ones are not executed/checked. I'd rather not break these seven Assertions up into separate methods, since these really do belong together logically (the TC only is 'passed' entirely if all seven are passing alltogether).</p>
<p>Cheers,
-J</p>
http://stackoverflow.com/questions/1768651/smart-assert-for-c-application2SMART ASSERT for C++ application?yesraaj2009-11-20T06:16:31Z2009-12-04T05:55:24Z
<p>Is it good to define a new macro that craters my need of showing failed assertion to user and with just enough information for developers to debug the issue.</p>
<blockquote>
<p>Message for user, what the
user should do with this message at last information for the developer</p>
</blockquote>
<pre><code>#define ASSERT(f) \
do \
{ \
if (!(f) && AfxAssertFailedLine(THIS_FILE, __LINE__)) \
AfxDebugBreak(); \
} while (0) \
</code></pre>
<p>sample message fn that we use,</p>
<pre><code>MessageBox(_T("Error in finding file."),_T("TITLE"),MB_ICONERROR);
</code></pre>
http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test4JUnit: Enable assertions in class under testChris Conway2009-11-25T16:10:19Z2009-11-26T02:20:13Z
<p>I've been bit a few times by Java <code>assert</code> statements that didn't fail in the JUnit test suite because assertions weren't enabled in JUnit's JVM instance. To be clear, these are "black box" assertions inside implementations (checking invariants, etc) not the assertions defined by the JUnit tests themselves. Of course, I'd like to catch any such assertion failures in the test suite.</p>
<p>The obvious solution is to be <em>really careful</em> to use <code>-enableassertions</code> whenever I run JUnit, but I'd prefer a more robust solution. One alternative is to add the following test to every test class:</p>
<pre><code> @Test(expected=AssertionError.class)
public void testAssertionsEnabled() {
assert(false);
}
</code></pre>
<p>Is there a more automatic way to accomplish this? A system-wide configuration option to JUnit? A dynamic call I could put in the <code>setUp()</code> method? </p>
http://stackoverflow.com/questions/1785467/can-i-write-custom-assertions-in-cxxtest0Can I write custom assertions in CxxTest?ThisSuitIsBlackNot2009-11-23T19:40:25Z2009-11-23T20:15:18Z
<p>I'm just starting to use CxxTest and would like to test whether a std::vector has been sorted correctly. Here's my test so far:</p>
<pre><code>void testSort() {
std::sort(vec.begin(), vec.end()); // This could be any sorting function
for (unsigned int i = 0; i < vec.size() - 1; ++i) {
TS_ASSERT(vec[i] <= vec[i + 1]);
}
}
</code></pre>
<p>Obviously, CxxTest does not provide a <code>TS_ASSERT_SORTED</code> assertion, but is there a way to write custom assertions? That would allow me to do this:</p>
<pre><code>void testSort() {
std::sort(vec.begin(), vec.end()); // This could be any sorting function
TS_ASSERT_SORTED(vec);
}
</code></pre>
<p>It's significantly easier to see the intent of the test when it's written this way.</p>
<p>I looked through the CxxTest <a href="http://cxxtest.sourceforge.net/guide.html" rel="nofollow">user's guide</a> but couldn't figure out whether you can write custom assertions like this. As an alternative, I could write a class IsSorted and implement its <code>operator()</code>. I could then write the test like this:</p>
<pre><code>void testSort() {
std::sort(vec.begin(), vec.end()); // This could be any sorting function
TS_ASSERT_PREDICATE(IsSorted, vec);
}
</code></pre>
<p>I'm guessing this is the correct approach. If I do this, though, should I place the definition of <code>class IsSorted</code> in its own header file, separate from my test suite? I'm still trying to figure out the best practices associated with unit testing, especially in this framework.</p>
<p>One final question: should I be sorting the vector in the <code>setUp()</code> method or in the test itself? </p>
http://stackoverflow.com/questions/1768295/proper-use-of-assert-h-in-debugging0proper use of assert.h in debuggingMat2009-11-20T04:11:28Z2009-11-20T04:20:00Z
<p>Hi!</p>
<p>c++ with visual studio 2008</p>
<p>if i use assert() from assert.h and compile in debug mode, the application crashes if the assert condition doesn't hold and it prints me in the console on what line in what file this happened. that's quite useful, but i'd prefere to trap into the debugger at this position instead, if the condition doesn't hold</p>
<p>how can I do that?
thanks!</p>
http://stackoverflow.com/questions/298909/java-assertions-underused7Java assertions underusedDon2008-11-18T14:38:50Z2009-11-09T14:39:57Z
<p>Hi,</p>
<p>I'm wondering why the "assert" keyword is so underused in Java? I've almost never seen them used, but I think they're a great idea. I certainly much prefer the brevity of:</p>
<pre><code>assert (param != null : "Param cannot be null");
</code></pre>
<p>to the verbosity of:</p>
<pre><code>if (param == null) {
throw new IllegalArgumentException("Param cannot be null");
}
</code></pre>
<p>My suspicion is that they're underused because</p>
<ul>
<li>They arrived relatively late (Java 1.4), by which time many people had already established their Java programming style/habit</li>
<li>They are turned off at runtime by default, WHY OH WHY??</li>
</ul>
<p>Cheers,
Don</p>
http://stackoverflow.com/questions/303197/saml-assertion-writexml-issue-in-c1SAML Assertion WriteXML issue in C#mjmcinto2008-11-19T20:13:16Z2009-11-07T19:20:58Z
<p>I've created an instance of a SamlAssertion, and added the the authorization statement and attribute statments to it, and now I want to print out the XML so I can do an HTTP post, but not all of the assertion is being outputed. What am I missing (I'm sure it's something bone-headed)?</p>
<p>Here is the code I'm using:</p>
<pre><code>// Add the Statements to the SAML Assertion
samlAssert.Statements.Add(samlAuthStatement);
samlAssert.Statements.Add(samlAttrStatement);
MemoryStream xmlStream = new MemoryStream();
XmlDictionaryWriter xmlWriter = XmlDictionaryWriter.CreateTextWriter(xmlStream, System.Text.Encoding.UTF8);
SamlSerializer samlAssertSerializer = new SamlSerializer();
WSSecurityTokenSerializer secTokenSerializer = new WSSecurityTokenSerializer();
samlAssert.WriteXml(xmlWriter, samlAssertSerializer, secTokenSerializer);
xmlStream.Position = 0;
StreamReader sr = new StreamReader(xmlStream, System.Text.Encoding.UTF8);
string AssertStr = sr.ReadToEnd();
TextBox1.Text = AssertStr;
</code></pre>
<p>But All that gets returned is this:</p>
<pre><code><saml:Assertion MajorVersion="1" MinorVersion="1" AssertionID="assertID"
Issuer="my Company" IssueInstant="2008-11-19T19:54:12.191Z"
xmlns:saml="urn:oasis:names:tc:SAML:1.0:assertion">
<saml:Conditions NotBefore="2008-11-19T19:54:12.191Z" NotOnOrAfter="2008-11-19T19:59:12.191Z"/>
<saml:AuthenticationStatement AuthenticationMethod="urn:oasis:names:tc:SAML:2.0:ac:classes:TimeSyncToken"
AuthenticationInstant="2008-11-19T19:54:12.191Z">
<saml:Subject>
<saml:NameIdentifier Format="cs-sstc-schema-assertion-1.1.xsd" NameQualifier="My company">xxxx</saml:NameIdentifier>
<saml:SubjectConfirmation>
<saml:ConfirmationMethod>urn:oasis:names:tc:SAML:1.0:cm:bearer</saml:ConfirmationMethod>
</saml:SubjectConfirmation>
</saml:Subject>
<saml:SubjectLocality IPAddress="x.x.x.x"/>
</saml:
</code></pre>
http://stackoverflow.com/questions/506285/debug-assert-vs-exceptions9Debug.Assert vs ExceptionsDuncan2009-02-03T07:56:28Z2009-11-06T19:06:45Z
<p>Surprisingly I was only able to find one previous question on SO about this subject, and I'd just like to get the community "Vote of Confidence" (or not!) on my approach.</p>
<p>The way I see it is thus:</p>
<ul>
<li>use Debug.Assert to state things you EXPECT would be true. This would be used when we are in complete control over our environment, for example in a method to
verify some pre and post-conditions.</li>
<li>use Exceptions when exceptional circumstances arise. Dealing with external resources, i.e. files, databases, networks etc is a no-brainer. But...</li>
</ul>
<p>It gets a little murky in the following scenario. Please note that this is a CONTRIVED EXAMPLE for illustration only!</p>
<p>Say we have class MyClass, which has a public property MyMode and a method GetSomeValueForCurrentMode(). Consider MyClass as one intended to be shipped (release built) in a library for use by other developers.</p>
<p>We expect MyMode to be updated by external users of this class. Now, GetSomeValueForCurrentMode() has the following logic:</p>
<pre><code>switch(MyMode)
{
case Mode.ModeA:
return val1;
case Mode.ModeB:
return val2;
default:
//Uh-uh this should never happen
}
</code></pre>
<p>What I'm getting at here is that the user of MyClass has left it in an invalid state. So what should we do?</p>
<p>In the default, should we Debug.Assert or throw new InvalidOperationException (or other) ?</p>
<p>There is one mantra that says we should not trust users of our classes. If we choose Debug.Assert and built MyClass as a release build (thereby removing the Debug Asserts) the user of the class wouldn't get helpful information that they had left it in an invalid state. But it's sort of contrary to the other mantra which says only throw exceptions when things completely out of your control happen.</p>
<p>I find I go round in circles with this - one of those programming debates that don't seem to have a definitive 'correct' answer. So let's put it to the vote! </p>
<p>Edit: I noticed this response in a related SO question (<a href="http://stackoverflow.com/questions/117171/design-by-contract-tests-by-assert-or-by-exception">http://stackoverflow.com/questions/117171/design-by-contract-tests-by-assert-or-by-exception</a>):</p>
<p>"The rule of thumb is that you should use assertions when you are trying to catch your own errors, and exceptions when trying to catch other people's errors. In other words, you should use exceptions to check the preconditions for the public API functions, and whenever you get any data that are external to your system. You should use asserts for the functions or data that are internal to your system. "</p>
<p>To me, this makes sense, and can be coupled with the 'Assert then throw' technique outlined below.</p>
<p>Thoughts welcome!</p>
http://stackoverflow.com/questions/1609536/nunit-assert-throws4NUnit: Assert.Throwsepitka2009-10-22T19:46:13Z2009-11-03T13:41:09Z
<p>How do I use Assert.Throws to assert type of the exception and the actual message workding.</p>
<p>Something like this:</p>
<pre><code>Assert.Throws<Exception>(
()=>user.MakeUserActive()).WithMessage("Actual exception message")
</code></pre>
<p>Method I am testing throws multiple messages of the same type, with different message and I need a way to test that correct message is thrown depending on the context.</p>
http://stackoverflow.com/questions/1625555/test-ajax-in-rails0Test ajax in railsdombesz2009-10-26T15:44:20Z2009-10-27T17:19:46Z
<p>Hi</p>
<p>In my action i have</p>
<pre><code>render :update do |page|
page["an_id"].value = "string"
end
</code></pre>
<p>My question is how can i test that the textfields value is changed propely?</p>
<p>Tried assert_select_rjs, but needs to be provided the replacing method just like :replace, :replace_html, :show, :hide, :toggle, :remove and :insert_html.<br />
But i dont know how should i fit to this arguments.</p>
http://stackoverflow.com/questions/1583760/rspec-mocks-verify-expectations-in-it-should-methods1rspec mocks: verify expectations in it "should" methods?Derick Bailey2009-10-18T01:47:26Z2009-10-18T19:11:10Z
<p>I'm trying to use rspec's mocking to setup expectations that I can verify in the it "should" methods... but I don't know how to do this... when i call the .should_receive methods on the mock, it verifies the expected call as soon as the before :all method exits.</p>
<p>here's a small example:</p>
<pre><code>describe Foo, "when doing something" do
before :all do
Bar.should_recieve(:baz)
foo = Foo.new
foo.create_a_Bar_and_call_baz
end
it "should call the bar method" do
# ??? what do i do here?
end
end
</code></pre>
<p>How can i verify the expected call in the 'it "should"' method? do i need to use mocha or another mocking framework instead of rspec's? or ???</p>
http://stackoverflow.com/questions/1480054/assert-difference-of-number-of-children-in-relationship-in-ruby-on-rails0Assert difference of number of children in relationship in Ruby on Railsahsteele2009-09-26T00:13:43Z2009-09-26T00:28:13Z
<p>My controller is able to create a child book_loan. I am trying to test this behavior in a functional test but am having a hard time using the assert_difference method. I've tried a number of ways of passing the count of book_loans to assert_difference with no luck.</p>
<pre><code> test "should create loan" do
@request.env['HTTP_REFERER'] = 'http://test.com/sessions/new'
assert_difference(books(:ruby_book).book_loans.count, 1) do
post :loan, {:id => books(:ruby_book).to_param,
:book_loan => {:person_id => 1,
:book_id =>
books(:dreaming_book).id}}
end
end
</code></pre>
<p><strong>can't convert BookLoan into String</strong></p>
<pre><code>assert_difference(books(:ruby_book).book_loans,:count, 1)
</code></pre>
<p><strong>NoMethodError: undefined method 'book_loans' for #</strong></p>
<pre><code>assert_difference('Book.book_loans.count', +1)
</code></pre>
<p><strong>can't convert Proc into String</strong></p>
<pre><code>assert_difference( lambda{books(:ruby_book).book_loans.count}, :call, 1 )
</code></pre>
http://stackoverflow.com/questions/1432776/whats-the-upgrade-path-from-assertion-assertequals1What's the "upgrade path" from Assertion.AssertEquals ?Paul Hollingsworth2009-09-16T12:53:08Z2009-09-25T01:12:56Z
<p>I've inherited some unit test code which is giving me a deprecation warning because it uses "Assertion.AssertEquals":</p>
<p>warning CS0618: 'NUnit.Framework.Assertion' is obsolete: 'Use Assert class instead'</p>
<p>However, I can't see the obvious method in the Assert class that I should be using instead?</p>
<p>AssertEquals takes two objects and a message that can be used to report the error if there's a failure. e.g.</p>
<pre><code> Assertion.AssertEquals(
"Enqueuing first item should set count to 1",
1, pq.Count);
</code></pre>
<p>What's the equivalent method on the Assert class?</p>
http://stackoverflow.com/questions/1467568/debug-assert-vs-exception-throwing5Debug.Assert vs Exception Throwingopc2009-09-23T17:47:23Z2009-09-23T20:39:49Z
<p>I've read plenty of <a href="http://java.sun.com/j2se/1.4.2/docs/guide/lang/assert.html" rel="nofollow">articles</a> (and a couple of other <em>similar</em> questions that were posted on StackOverflow) about how and when to you assertions, and I understood them well. But still, I don't understand what kind of motivation should drive me to use <em>Debug.Assert</em> instead of throwing a plain exception. What I mean is, in .Net the default response to a failed exception is to "stop the world" and display a message box to the user. Though this kind of behavior could be modified, I find it highly annoying and redundant
to do that, while I could instead, just throw a suitable exception. This way, I could easily write the error to the application's log just before I throw the exception, and plus, my application doesn't necessarily freeze.</p>
<p>So, why should I, if at all, use <em>Debug.Assert</em> instead of a plain exception? Placing an assertion where it shouldn't be could just cause all kinds of "unwanted behavior", so in my point of view, I really don't gain anything by using an assertion instead of throwing an exception. Do you agree with me, or am I missing something here?</p>
<p><strong>Note:</strong> I fully understand what's the difference "in theory" (Debug vs Release, usage patters etc.), but as I see it, I would better of throwing an exception instead of performing an assert. Since if a bug is discovered on a production release, I still would like that the "assertion" would fail (after all, the "overhead" is ridiculously small), so I'll be better off throwing an exception instead.</p>
<p><hr /></p>
<p><strong>Edit:</strong> The way I see it, if an assert failed, that means that the application entered some kind of corrupted, unexpected state. So why would I want to continue execution? It doesn't matter if the application runs on a debug or release version. The same goes to both</p>
http://stackoverflow.com/questions/1448601/convenient-strategies-for-assertion-checks1Convenient strategies for assertion checks.Łukasz Lew2009-09-19T14:00:36Z2009-09-19T16:18:29Z
<p>Some asserts are costly, some are better turned off at production code.
At least it is not clear that assertions should be always enabled.</p>
<p>In my application I would like to be able to turn on/off part of assertions on per-file or per-class basis.</p>
<p>How to do it in C++?</p>
http://stackoverflow.com/questions/1405734/is-gnus-nana-library-dead-is-there-a-successor-in-use3Is GNU's nana library dead? Is there a successor in use?Mark Dennehy2009-09-10T14:48:33Z2009-09-11T09:40:54Z
<p>Looking at <a href="http://savannah.gnu.org/projects/nana/" rel="nofollow">http://savannah.gnu.org/projects/nana/</a> it seems that the last work was done on Nana four years ago, and the official gnu.org homepage for nana is a placeholder. Given how inactive projects tend to suffer from bitrot:</p>
<ol>
<li>Has the project died? </li>
<li>Is there a successor? </li>
<li>Do folks have a different assertion/logging library for C/C++ that is superior?</li>
</ol>
http://stackoverflow.com/questions/1371940/unit-testing-is-it-a-good-practice-to-have-assertions-in-setup-methods6Unit testing: Is it a good practice to have assertions in setup methods?Kaka Woef2009-09-03T07:38:15Z2009-09-03T19:11:24Z
<p>In unit testing, the setup method is used to create the objects needed for testing.</p>
<p>In those setup methods, I like using assertions: I know what values I want to see in those
objects, and I like to document that knowledge via an assertion.</p>
<p>In a recent post on <a href="http://stackoverflow.com/questions/1368900/unit-testing-is-it-bad-form-to-have-unit-test-calling-other-unit-tests">unit tests calling other unit tests</a> here on stackoverflow, the general feeling seems to be that unit tests should <em>not</em> call other tests:
The answer to that question seems to be that you should refactor your setup, so
that test cases do not depend on each other.</p>
<p>But there isn't much difference in a "setup-with-asserts" and a
unit test calling other unit tests.</p>
<p>Hence my question: Is it good practice to have assertions in setup methods? </p>
<p>EDIT:</p>
<p>The answer turns out to be: this is not a good practice in general. If the setup results need to be tested, it is recommended to add a separate test method with the assertions (the answer I ticked); for documenting intent, consider using Java asserts.</p>
http://stackoverflow.com/questions/1288620/best-way-for-testing-compiled-code-to-return-expected-output-errors1Best way for testing compiled code to return expected output/errorsJean2009-08-17T15:33:08Z2009-08-17T15:58:50Z
<p>How do you test if compiled code returns the expected output or fails as expected?</p>
<p>I have worked out a working example below, but it is not easily extendable. Every additional test would require additional nesting parentheses. Of course I could split this into other files, but do you have any suggestions on how to improve this?. Also I'm planning to use this from make test stanza in a makefile, so I do not expect other people to install something that isn't installed by default, just for testing it. And stdout should also remain interleaved with stderr.</p>
<p>simplified example:</p>
<pre><code>./testFoo || echo execution failed
./testBar && echo expected failure
(./testBaz && (./testBaz 2>&1 | cmp -s - foo.tst && ( ./testFoo && echo and so on
|| echo testFoo's execution failed )|| echo testBaz's does not match )
|| echo testBaz's execution failed
</code></pre>
<p>my current tester looks like this (for one test):</p>
<pre><code>\#!/bin/bash
compiler1 $1 && (compiler2 -E --make $(echo $1 | sed 's/^\(.\)\(.*\)\..*$/\l\1\2/') && (./$(echo $1 | sed 's/^\(.\)\(.*\)\..*$/\l\1\2/') || echo execution failed) || less $(echo $1 | sed 's/^\(.\)\(.*\)\..*$/\l\1\2/').err) || echo compile failed
</code></pre>
http://stackoverflow.com/questions/1276204/regexkitlite-assertion-failure-occurring-intermittently0RegexKitLite assertion failure occurring intermittently.Aliased Teen2009-08-14T05:30:26Z2009-08-14T15:55:36Z
<p>I'm using the wonderful RegexKitLite framework built upon the ICU library that ships with Mac OS X and iPhone OS. It has been smooth sailing so far, with the exception of this error that appears intermittently when searching for matches:</p>
<pre><code>Internal Error
Invalid parameter not satisfying:
(cacheSlot->setToHash == buffer->hash) && (cacheSlot->setToLength == buffer->length) && (cacheSlot->setToUniChar == buffer->uniChar)
</code></pre>
<p>Any idea what might be causing this?</p>
http://stackoverflow.com/questions/1254044/net-equivalent-to-javas-assertionerror1.Net equivalent to Java's AssertionErrorBen Lings2009-08-10T10:03:14Z2009-08-10T10:34:15Z
<p>In Java, I will occasionally throw an <a href="http://java.sun.com/javase/6/docs/api/java/lang/AssertionError.html" rel="nofollow"><code>AssertionError</code></a> directly, to assert that a particular line will not be reached. An example of this would be to assert that the <code>default</code> case in a <code>switch</code> statement cannot be reached (see <a href="http://www.javaspecialists.eu/archive/Issue162.html" rel="nofollow">this JavaSpecialists page</a> for an example).</p>
<p>I would like to use a similar mechanism in .Net. Is there an equivalent exception that I could use? Or is there another method that could be used with the same effect?</p>
<p><strong>Edit</strong> - To clarify, I'm looking for a mechanism to flag failures at runtime, in released code, to indicate that there has been a (possibly catastrophic) failure of some invariant in the code. The linked example generates a random integer between 0 and 2 (inclusive) and asserts that the generated number is always 0, 1 or 2. If this assertion doesn't hold, it would be better to stop execution completely rather than continue with some unknown corrupt state of the system.</p>
http://stackoverflow.com/questions/1081409/why-should-i-use-asserts6Why should I use asserts?jan2009-07-04T03:13:28Z2009-08-07T17:11:24Z
<p>I never got the idea of asserts -- why should you ever use them? </p>
<p>I mean, let's say I were a formula driver and all the asserts were things like security belt, helmet, etc.</p>
<p>The tests (in debug) were all okay, but now we want to do racing (release)!
Should we drop all security, because there were no issues while testing? </p>
<p>I will never ever remove them. I think most of the guys that claim that removing something comparable to asserts never profiled their code or the asserts were absolute displaced.
I've never seen any real performance advantage especially regarding the 80 / 20 rule.</p>
<p>So, am I missing the point somehow, or could anybody tell me, why I should use asserts?
Btw, I'm using unit tests.</p>
<p>cheers
jan</p>
http://stackoverflow.com/questions/1208404/do-you-use-assertions7Do you use assertions?Oscar Reyes2009-07-30T18:23:23Z2009-08-05T19:11:17Z
<p>This is not really a "question" so I'm making it CW.</p>
<p>The </p>
<pre><code>assert
</code></pre>
<p>Keyword is great! </p>
<p>It should make, feel your self more confident with the code you wrote, but, until today when I was creating a small test class ( < 20 lines ) I realize a never use it since it was introduced. </p>
<p>Heck! I barely use logger which is very useful indeed, but it wasn't until today I realize I don't use assertions.</p>
<p>Do you use assertions? If no, what's the reason?</p>
http://stackoverflow.com/questions/1180044/should-one-override-equals-method-for-asserting-the-object-equality-in-a-unit-tes3Should one override equals method for asserting the object equality in a unit test?spinodal2009-07-24T20:37:11Z2009-07-28T17:54:59Z
<p>Let's say we are testing the result of a method by asserting the equality of all the properties of the result object with properties of an expected result object. Should we implement equals method and use Assert.AreEqual(expectedResult, actualResult)... But equals may mean something different in production code. </p>
<p>Which is the best practice? </p>
<ul>
<li>Asserting the equality of the objects through overriden equals method </li>
</ul>
<p>or</p>
<ul>
<li>Asserting the equality of all the properties</li>
</ul>
http://stackoverflow.com/questions/286093/rhino-mocks-asserting-that-a-method-is-called-exactly-one-time3Rhino Mocks: Asserting that a method is called exactly one timebennage2008-11-13T02:32:54Z2009-07-22T04:56:21Z
<p>I want to assert that a method is called exactly one time. </p>
<p><em>Update: I'm using RhinoMocks 3.5.</em></p>
<p>Here's what I thought would work:</p>
<pre><code>[Test]
public void just_once()
{
var key = "id_of_something";
var source = MockRepository.GenerateStub<ISomeDataSource>();
source.Expect(x => x.GetSomethingThatTakesALotOfResources(key))
.Return(new Something())
.Repeat.Once();
var client = new Client(soure);
// the first call I expect the client to use the source
client.GetMeMyThing(key);
// the second call the result should be cached
// and source is not used
client.GetMeMyThing(key);
}
</code></pre>
<p>I want this test to fail if the second invocation of GetMeMyThing() calls source.GetSomethingThatTakesALotOfResources().</p>
http://stackoverflow.com/questions/701390/assertion-in-vs2008-but-not-in-vs20051Assertion in VS2008 but not in VS2005andreone2009-03-31T14:56:28Z2009-07-18T21:54:25Z
<p>Hello,</p>
<p>After switching from VS2005 to VS2008 SP1, I found an issue that I can't explain.<br />
A program works fine under VS2005 in both release and debug mode. Under VS2008, when entering the debugger an assert is raised.<br />
If I let the program run (in debug or release mode), no assertion at all.</p>
<p>I spent almost two days on this and I don't understand what I do wrong.</p>
<p><strong>Description of the program:</strong>
I have a MFC dialog based program that creates a user thread (CWinThread) that creates the main dialog of the application.<br />
A worker thread loops infinitely and posts each second a message to the dialog. The message is processed in the gui thread.</p>
<p><strong>Some parts of my code:</strong></p>
<p>The InitInstance of the gui thread:</p>
<pre><code>BOOL CGraphicalThread::InitInstance()
{
CGUIThreadDlg* pDlg = new CGUIThreadDlg();
pDlg->Create(CGUIThreadDlg::IDD);
m_pMainWnd = pDlg;
AfxGetApp()->m_pMainWnd = pDlg;
return TRUE;
}
</code></pre>
<p>The worker thread:</p>
<pre><code>UINT ThreadProc(LPVOID pVoid)
{
do
{
AfxGetApp()->m_pMainWnd->PostMessage(WM_APP+1, (WPARAM)new CString("Hello"), NULL);
Sleep(1000);
}
while(!bStopThread);
return 0;
}
</code></pre>
<p>The dialog message handler is like this:</p>
<pre><code>LRESULT CGUIThreadDlg::OnMsg(WPARAM wp, LPARAM lp)
{
CListBox* pList = (CListBox*)GetDlgItem(IDC_LIST1);
CString* ps = (CString*)wp;
pList->InsertString(-1, *ps);
delete ps;
return 1L;
}
</code></pre>
<p>This works perfectly fine with VS2005.
But with VS2008, but as soon as a put a breakpoint and enter the debugging mode, I have an assertion raised ???<br />
wincore.cpp line 906</p>
<pre><code>CObject* p=NULL;
if(pMap)
{
ASSERT( (p = pMap->LookupPermanent(m_hWnd)) != NULL ||
(p = pMap->LookupTemporary(m_hWnd)) != NULL);
}
ASSERT((CWnd*)p == this); // must be us
// Note: if either of the above asserts fire and you are
// writing a multithreaded application, it is likely that
// you have passed a C++ object from one thread to another
// and have used that object in a way that was not intended.
// (only simple inline wrapper functions should be used)
//
// In general, CWnd objects should be passed by HWND from
// one thread to another. The receiving thread can wrap
// the HWND with a CWnd object by using CWnd::FromHandle.
//
// It is dangerous to pass C++ objects from one thread to
// another, unless the objects are designed to be used in
// such a manner.
</code></pre>
<p>If I remove the GUI thread and create the dialog into the CWinApp thread, the problem doesn't occur anymore.</p>
<p>Does anybody have any idea?<br />
Am I doing something wrong?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1116018/is-assert-and-unit-testing-incompatible1Is assert and unit-testing incompatible?Iulian Șerbănoiu2009-07-12T13:09:06Z2009-07-18T19:55:32Z
<p>Hello,</p>
<p>I have some concerns related to the fact of testing some functions containing the assert macro from <a href="http://en.wikipedia.org/wiki/Assert.h" rel="nofollow">assert.h</a>.</p>
<p>If the assert fails the test fails also.
This leaves me with some test cases that will never work.</p>
<p>For example a function instead of indicating failure (return false or something similar) asserts.</p>
<p>Is there a solution for this (unit-testing functions containing assert)?</p>
<p>Thanks,</p>
<p>Iulian</p>
http://stackoverflow.com/questions/1008888/is-there-an-easier-way-than-using-ifdef-in-c1Is there an easier way than using #ifdef in C?John Baker2009-06-17T18:46:37Z2009-07-17T15:45:50Z
<p>From what I understand assert is a macro in C and supposedly if you use it at compile time but leave it disabled then there won't be overhead (which might not be correct I don't know).
The problem for me is that what I'd like to do is get all the variables passed to my function and print out that output, but only if I want debugging enabled. Here is what I have so far:</p>
<pre><code>int exampleFunction (int a, int b)
{
#ifdef debugmode
printf("a = %i, b = %i", a, b);
#endif
}
</code></pre>
<p>I'm wondering if there is any easier (and less ugly) method for doing something like this. xdebug for php has this feature and I've found is saves me an enormous amount of time when debugging so i want to do it for each function.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/381455/how-did-you-extend-your-assert-class3How did you extend your Assert classrabashani2008-12-19T16:29:03Z2009-07-17T15:44:20Z
<p>I love to Extend my Assert.AreEqual to many different classes, the known one is the CollectionAssert of course, but I can think of some more such as: <a href="http://www.human-debugger.net/blog/2008/12/21/TddExtendingAssertToSupportImages.aspx" rel="nofollow">ImageAssert</a>, XmlAssert etc..</p>
<p>Did you Create your own Assert classes? and what kind of new would you like to create?</p>
http://stackoverflow.com/questions/607136/why-is-there-no-asserterror-function-in-flexunit1Why is there no assertError() function in FlexUnit?lorennorman2009-03-03T16:32:58Z2009-07-17T15:43:55Z
<p>It seems that most XUnit testing frameworks provide assertions for the times when you want to assert that a given operation will thrown an exception (or an Error in AS3 parlance.) Is there some "standard" way of doing this that I am overlooking, which would explain the absence of an assertError() assertion included with FlexUnit?</p>
<p>I know HOW to implement such a thing, and I will probably add it to my FlexUnit (go open source!), but it seems like such a glaring omission that I'm left wondering if I'm just doing it wrong.</p>
<p>Anyone have thoughts on this?</p>
http://stackoverflow.com/questions/777261/avoiding-unused-variables-warnings-when-using-assert-in-a-release-build6Avoiding unused variables warnings when using assert() in a Release buildHexagon2009-04-22T13:43:02Z2009-07-17T15:43:24Z
<p>Sometimes a local variable is used for the sole purpose of checking it in an assert(), like so -</p>
<pre><code>int Result = Func();
assert( Result == 1 );
</code></pre>
<p>When compiling code in a Release build, assert()s are usually disabled, so this code may produce a warning about Result being set but never read.</p>
<p>A possible workaround is -</p>
<pre><code>int Result = Func();
if ( Result == 1 )
{
assert( 0 );
}
</code></pre>
<p>But it requires too much typing, isn't easy on the eyes and causes the condition to be always checked (yes, the compiler may optimize the check away, but still).</p>
<p>I'm looking for an alternative way to express this assert() in a way that wouldn't cause the warning, but still be simple to use and avoid changing the semantics of assert().</p>
<p>(disabling the warning using a #pragma in this region of code isn't an option, and lowering warning levels to make it go away isn't an option either...).</p>