0
votes
1answer
65 views

How to perform triple equals as negation

I am learning scala, and want to write my tests with ===. However, I am curious if there is a way to do something like this: assert(1 !=== 2) I have tried the above, !==, and !(===) Is there any ...
2
votes
1answer
67 views

How to combine Java assert and (JUnit) Tests for public postconditions?

I read the Oracle recommendations concerning Java's assert and it says that you should use assert for public postconditions, too ...
0
votes
0answers
18 views

anuga model asserterror

Guys, I installed a model called Anuga,When I do the test_all.py. there is a failure as follows. FAIL: test_parabolic_solve_rectangular_cross_velocities_zero_h ...
-1
votes
1answer
120 views

Asserting Correct Console Output in JUnit

I am trying to write a basic JUnit tutorial, and I am demonstrating this with a simple Hello World example using a basic service layer. My issue is that even though the test output matches my control ...
1
vote
2answers
123 views

assert invalid, misplaced or occurs too often

i'm coming accross with this error whilst trying to generate my XSD and can't figure out what i'm doing wrong; my code looks like this: <?xml version="1.0" encoding="UTF-8"?> <xs:schema ...
0
votes
2answers
167 views

Robolectric & testing startActivityForResult

I have troubles with my Robolectric unit test. I can assert without problem that a click started a new activity when the listener uses the method startActivity( Intent ) But it seems Robolectric ...
0
votes
1answer
30 views

Assert Failing. Cannot Determine Why?

I have the following code. String rowNum = Integer.toString(rand.nextInt(max - min + 1) + min); WebElement randomRow = ...
1
vote
2answers
174 views

Using SenTest to test an assertion

I have code in method which asserts( ) that a parameter falls within a given range. I'd like to test illegal parameters using a SenTest test case. My first assumption was that I should use ...
-1
votes
1answer
20 views

Con you help me in very simple testing?

i was wondering how i could go about testing this code public boolean isIT(String p1, String p2) { if(p1.equals(p2)) { return true; } return false; } @Test ...
2
votes
1answer
121 views

How to test if exception in ok in unittest

I have a question about unittest. How to make a test to see if is there an exception? an example: Datum(3,32,2012) If i call class Datum like this, where month is not in range (>31), it's ...
3
votes
3answers
2k views

What are all the assert* methods in django's TestCase? [closed]

I googled and googled and nada. The amazing docs are very well hidden. Anyone have a link handy?
1
vote
1answer
629 views

How do you test the params hash in a Rails test?

The following generates an error: "undefined local variable or method `params'" assert_equal params[:recipient_id], users(:one).id How do you test the params hash? Also, how do you test ...
3
votes
4answers
113 views

Library or framework to test a Java class structure

I have this ... set of classes that I use to see if a created class matches a given structure. What I'm doing is to read a properties file and then compare it with a class. ie. className: ...
1
vote
2answers
884 views

phpUnit - assertQuery fails with

I am having trouble with an assertQuery(). In the html I have (verified by outputting the body) <input type="text" name="LASTNAME" id="LASTNAME" value="" maxlength="25" size="20" /> So I ...
1
vote
3answers
612 views

Rails Functional Test assert_select finds nothing after AJAX post

On Rails 2.3.2 I'm trying to test a view in a functional test def test_view get :form xhr :post, :add_to_cart, {:id => 1} post :create, {:param => value} assert_select 'title', 'Success!' ...
1
vote
5answers
648 views

Groovy - Type testing?

I'm really brand new to Groovy and I'm trying to get something done. I've written some Groovy code (which works just fine) which receives some text. This text should be an integer (between 0 and 10). ...
5
votes
4answers
480 views

assert_equal says <0.15> expected but was <0.15>, but only if the method computes 0.15 in a certain way

So for this model method: def tax_rate tax_rate = 0.0 tax_rate += STATE_TAX if state_taxable? #STATE_TAX = 0.1 tax_rate += IMPORT_TAX if imported? #IMPORT_TAX = 0.05 tax_rate end This ...
1
vote
1answer
2k views

Using Assert to compare two objects

Writing test cases for my project, one test I need is to test deletion. This may not exactly be the right way to go about it, but I've stumbled upon something which isn't making sense to me. Code is ...
8
votes
3answers
4k views

Proper way to assert type of variable in Python

In using a function, I wish to ensure that the type of the variables are as expected. How to do it right? Here is an example fake function trying to do just this before going on with its role: def ...
0
votes
5answers
511 views

C# : Unit testing without using 3rd party framework?

Should unit testing be run in debug or release mode? I am using Visual Studio Standard Edition 2005 which does not come with any unit testing framework. Since I also do not want to make use of any ...
1
vote
3answers
223 views

Convenient strategies for assertion checks

Some asserts are costly, some are better turned off at production code. At least it is not clear that assertions should be always enabled. In my application I would like to be able to turn on/off ...
3
votes
5answers
539 views

Python test framework with support of non-fatal failures

I'm evaluating "test frameworks" for automated system tests; so far I'm looking for a python framework. In py.test or nose I can't see something like the EXPECT macros I know from google testing ...
0
votes
4answers
405 views

C++ Assertions that Can Display a Custom String with Boost or STL?

I really want to be able to go: (in C++) assert( num > 0, "The number must be greater than zero!"); In C# XNA, they have a method that does exactly this: Debug.Assert( num > 0, "The number ...
18
votes
6answers
5k views

What's the difference between Assert.AreNotEqual and Assert.AreNotSame?

In C#, what's the difference between Assert.AreNotEqual and Assert.AreNotSame