Tagged Questions
1
vote
1answer
73 views
Unit Testing: Assert that a file/path exists [closed]
I am attempting to create a regression test for my Installer. The regression test is a script written in Python. The test checks that the correct files have been installed in the correct place.
Is ...
1
vote
1answer
61 views
CollectionAssert.AreEqual passes but CollectionAssert.AreEquivalent Fails?
I have build some complex objects and I am trying to verify it works correctly by doing some unit testing. This involves comparing some List(Of T), so I tried to use CollectionAssert.
Now I ...
2
votes
1answer
68 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
1answer
151 views
Comparing two DataTables (Unit Testing, Integration Testing, C#, TestMethod)
What kind of tests should be carried out in unit testing when comparing Datatables that are supposed to be different and have multiple rows.
[TestMethod]
public void ...
2
votes
3answers
183 views
Assert in Try..Catch block is caught
Just came across some interesting behavior - Assert being caught by Catch block.
List<Decimal> consArray = new List<decimal>();
try
{
Decimal d;
...
1
vote
2answers
83 views
Best practice for Python: assert command() == False [closed]
I wonder what is better/best:
>>> def command():
... return False
...
>>> assert command() == False
>>> assert command() is False
>>> assert not command()
...
1
vote
3answers
314 views
Python unittest - asserting dictionary with lists
While writing some tests for my class, I encountered interesting simple problem. I would like to assertDictEqual two dictionaries containing some list. But this lists may not be sorted in a same way ...
1
vote
2answers
137 views
TestMethod in c# for JSON data check from ASP .NET MVC controller
Please tell me how to get the value by not changing the controller action.
Controller
[HttpPost]
public JsonResult A_Action_In_Controller(Guid ID)
{
var ...
1
vote
2answers
87 views
Assertions library for node.js?
Assertions provided by node.js assert for unit-testing are very limited. Even before I've written the first test I was already creating a few of assertions as it was clear I will keep re-using them.
...
3
votes
1answer
257 views
Assert.fail (node.js): what does Operator parameter mean?
Node.js unit-testing module has basic assertion assert.fail:
assert.fail(actual, expected, message, operator)
What does operator mean? I'm really new to unit-testing...
1
vote
1answer
59 views
Custom assertions in a c++ unit tester
I am working on a c++ unit tester(mostly as practice) and had some questions about my implementation.
I wanted to have the ability to overload my custom assertions so I decided to implement them as ...
0
votes
4answers
169 views
Assert.AreEqual fails with the same type
I'm testing two objects (and a collection of them) but it fails even though they have the same type:
I have done some research and its maybe because of the references, which they could be ...
1
vote
1answer
220 views
Assert.ThrowsException in async function unit test?
I try to make a test method to test some simple data downloading. I made a test case in which downloading should fail with HttpRequestException. When testing its non-async version, test works great ...
1
vote
1answer
117 views
Assertion in Helper Class Ignored
I have a test case and a helper class. In the helper class I want to use asserts too like here:
MainTests.h
#import <SenTestingKit/SenTestingKit.h>
@interface MainTests : SenTestCase
@end
...
0
votes
2answers
65 views
Unit testing HFT stock prices - Asserts constantly fail due to price fluctuations
For an application that retrieves live stock prices I find my unit test assertions returning false negatives due to price fluctuations between two calls that populate variables which hold the expected ...
8
votes
2answers
285 views
Why does Assert.AreEqual() cast to object before comparing?
I'm writing some unit tests and the following assertion fails:
Assert.AreEqual(expected.Episode, actual.Episode);
If I call this instead, it succeeds:
...
0
votes
1answer
381 views
Verify not working in Ruby with Selenium::WebDriver
I am just starting to figure how to create unit tests using "test/unit". I copied the code generated by Selenium IDE and paste it into my Ruby test method.
But when running it with Ruby.exe, for some ...
1
vote
2answers
179 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
vote
1answer
137 views
Testing for side-effects in python
I want to check that my function has no side-effects, or only side-effects affecting precise variables. Is there a function to check that it actually has no side-effects (or side-effects on only ...
0
votes
1answer
206 views
Assert.AreEqual unit testing for DbContext entities
I wish to unit test my business logic is loading the correct data by loading an entity via the business logic and comparing it to an entity loaded directly from the dbcontext.
Assert.AreEqual fails ...
2
votes
4answers
960 views
Are AssertionErrors forbidden if I want to use JUnit?
I have a method that during a specific point of processing it expects that certain invariants are kept.
To keep this trivial let's say that at point X during the code processing the variable high and ...
1
vote
0answers
24 views
iPhone Unittest with Warning
i have a question..i have write a Unittest for my iPhone App.
Can I manage the UnitTest warning situation?
I wish I had my test complete successfully (but) with a warning
0
votes
1answer
44 views
Is there a PHP equivalent for Groovy's Power Asserts?
Is there a PHP equivalent for Groovy's Power Asserts?
2
votes
3answers
298 views
Issue with Resharper's “Type argument is redundant” and assertions
I have just recently started using ReSharper and am looking for a way of resolving a particular issue I have with the "Type argument specification is redundant" tooltip/quickfix. When writing unit ...
3
votes
1answer
78 views
Should referential integrity from the database be unit tested?
Lets assume I have a Customer and Order table.
When I do a Customer_Delete_Test do you also Assert if the related Orders are deleted too or
do you rely on the referential integrity between the ...
6
votes
2answers
217 views
Python Unittest Modularity vs Readability
I have a Python unittest, with some tests having the same type object tested. The basic outline in one test-class is:
class TestClass(unittest.TestCase):
def setup(self):
...
def ...
1
vote
2answers
121 views
Accuracy in assertEquals?
I have a quick question:
/**
* Method a1
*
* @param p1 A parameter
* @param p2 A parameter
* @return The return value
*/
public double a1(double p1, double p2) {
return (p1 + p2) / 2;
}
...
2
votes
7answers
370 views
Asserting a collection has multiple instances of an item in Java?
The answer to this old question recommends Hamcrest for asserting on collections.
What happens if I want to assert a collection has multiple instances of an object?
list = newArrayList();
...
5
votes
5answers
894 views
How can I avoid multiple asserts in this unit test?
This is my first attempt to do unit tests, so please be patient with me.
I'm still trying to unit test a library that converts lists of POCOs to ADO.Recordsets.
Right now, I'm trying to write a test ...
2
votes
1answer
123 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 ...
1
vote
1answer
249 views
RhinoMocks: AssertWasCalled doesn't work on Stub
I'm trying to assert with RhinoMocks that a certain property setter was called. But it's not working as expected.
The following simplified example illustrates the problem.
Consider this interface:
...
0
votes
2answers
265 views
assertEquals(obj,obj) returns a failed test
Hmm, I have a money object that allows me to add other money objects into it.
I tried assertEquals() in java for testing out if my code if okay, but then it failed.
I'm very positive that my code is ...
1
vote
3answers
1k views
JUnit Testing - assertTrue not throwing Exception
This is my first JUnit test and I don't understand why is not throwing an AssertionError, what am I doing wrong??
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.JUnitCore;
...
0
votes
2answers
278 views
Assert.AreEqual(…) gives me an System.FormatException
Assert.AreEqual(expected, actual, "The value returned for {0}'s Foo method should be 'Bar'.",
typeof(Calculator));
Assert.AreEqual(expected, actual, "The value returned for {0}'s Foo ...
0
votes
2answers
502 views
How to handle a failed PHP assertion with PHPUnit?
I have an assertion in my code. Something like:
assert('is_string($var)');
If I write a test for PHPUnit that causes this assertion to fail with the message, Warning: assert(): Assertion ...
10
votes
2answers
2k views
Unittest's assertEqual and iterables - only check the contents
Is there a 'decent' way in unittest to check the equality of the contents of two iterable objects?
I am using a lot of tuples, lists and numpy arrays and I usually only want to test for the contents ...
-3
votes
1answer
2k views
JUnit 4.9 greaterThan assert
I am using JUnit4.9.zip. I downloaded it from https://github.com/KentBeck/junit/downloads. I am also using IntelliJ 10.5 as my text editor. I am having a problem getting the assertThat method to work ...
1
vote
1answer
1k views
Proper Assert_Raise Unit Testing and Use of Exception Class
I am working on Exercise 49 of Learn Ruby the Hard Way
The exercise asks to write a unit test for each function provided. One of the items I am testing is if a proper exception is raised. It is ...
2
votes
2answers
350 views
More informative asserts in Scala
I'm looking for asserts in the style of Google's testing framework, where something like ASSERT_LT(a, b) will check that $a is less than $b, and if not, will print the values of $a and $b in the error ...
1
vote
0answers
81 views
assert using unittest outside testcase class
This works:
class TestSequenceFunctions(unittest.TestCase):
def test_choice(self):
self.assertEquals(1, 1, 'they are equal!')
class OtherClass ( val ):
But I want the assertEquals in ...
0
votes
1answer
131 views
using assert_equal and .join metho failed pass the unit testing, when learning RoR with the book Agile Development with Ruby on Rails
I just started learning Ruby on Rails, even Ruby language itself.
after reading the Iteration B2: Unit Testing of Models and doing the following exercise:
1. The validation option :length checks the ...
3
votes
2answers
194 views
Unit Testing - What do you do when your code is pretty much just a calculation (GetHashCode for example)? [duplicate]
public class Foo
{
public int X { get; set; }
public int Y { get; set; }
public int Z { get; set; }
public override int GetHashCode()
{
var hash = 17;
hash *= 23 + ...
5
votes
1answer
640 views
Assert.AreEqual(object, object) method
How does the Assert.AreEqual(object, object) method (in the namespace Microsoft.VisualStudio.TestTools.UnitTesting) determine whether the parameters are equal? Does it make use of the ...
3
votes
6answers
3k views
Unit Test Assert.AreEqual failed
I have a unit test for a method which gets an object from a collection. This keeps failing and I cannot see why, so I have created a very simple test below to create 2 supplier object and test they ...
3
votes
3answers
294 views
How to test assertions?
I am using a unit testing framework to test my libraries. I have quite a few assertions in the library to make sure that programmer errors are caught in debug builds. Now I want to make sure I am ...
10
votes
7answers
643 views
assert dilemma in unit testing class
I would like to use PHP's assert function in my unit testing framework. It has the advantage of being able to see the expression being evaluated (including comments) within the error message.
The ...
3
votes
6answers
978 views
How to assert an actual value against 2 or more expected values?
I'm testing a method to see if it returns the correct string. This string is made up of a lot of lines whose order might change, thus usually giving 2 possible combinations. That order is not ...
2
votes
3answers
325 views
Howto combine unit testing with assert()
Suppose that the preconditions of my object's functions are checked with assert(). How can I then, without ripping my hair off in the process, write meaningful unit tests that catches the precondition ...
1
vote
2answers
592 views
How to make sure OCUnit test suite tearDown is called?
In our iPhone app unit tests we have one test suite which contains all test case classes. In the suite's setUp/tearDown we do general set up/tear down which creates/deletes some entities in DB. In ...
3
votes
1answer
119 views
Why would you use Assert.ReplaceNullChars(string input)?
Why would you use Assert.ReplaceNullChars(string input)?
I have searched but can't find any cases of anyone really using this. Even MSDN is not helpful. All I can find out about it is:
...