active questions tagged functional-testing - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:51:20Zhttp://stackoverflow.com/feeds/tag/functional-testinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987332/how-to-automate-testing-of-medium-trust-code3How to Automate Testing of Medium Trust CodeIan Davis2009-06-12T15:33:20Z2009-11-25T23:37:59Z
<p>I would like to write automated tests that run in medium trust and fail if they require full trust. </p>
<p>I am writing a library where some functionality is only available in full trust scenarios and I want to verify that the code I wish to run in medium trust will work fine. If also want to know that if I change a class that requires full trust, that my tests will fail.</p>
<p>I have tried creating another AppDomain and loading the medium trust PolicyLevel, but I always get an error with assembly or its dependency could not be loaded while trying to run the cross AppDomain callback.</p>
<p>Is there a way to pull this off?</p>
<p><strong>UPDATE</strong>: Based replies, here is what I have. Note that your class being tested must extend MarshalByRefObject. This is very limiting, but I don't see a way around it.</p>
<pre><code>
using System;
using System.Reflection;
using System.Security;
using System.Security.Permissions;
using Xunit;
namespace PartialTrustTest
{
[Serializable]
public class ClassUnderTest : MarshalByRefObject
{
public void PartialTrustSuccess()
{
Console.WriteLine( "partial trust success #1" );
}
public void PartialTrustFailure()
{
FieldInfo fi = typeof (Int32).GetField( "m_value", BindingFlags.Instance | BindingFlags.NonPublic );
object value = fi.GetValue( 1 );
Console.WriteLine( "value: {0}", value );
}
}
public class Test
{
[Fact]
public void MediumTrustWithExternalClass()
{
// ClassUnderTest must extend MarshalByRefObject
var classUnderTest = MediumTrustContext.Create<ClassUnderTest>();
classUnderTest.PartialTrustSuccess();
Assert.Throws<FieldAccessException>( classUnderTest.PartialTrustFailure );
}
}
internal static class MediumTrustContext
{
public static T Create<T>()
{
AppDomain appDomain = CreatePartialTrustDomain();
var t = (T) appDomain.CreateInstanceAndUnwrap( typeof (T).Assembly.FullName, typeof (T).FullName );
return t;
}
public static AppDomain CreatePartialTrustDomain()
{
var setup = new AppDomainSetup {ApplicationBase = AppDomain.CurrentDomain.BaseDirectory};
var permissions = new PermissionSet( null );
permissions.AddPermission( new SecurityPermission( SecurityPermissionFlag.Execution ) );
permissions.AddPermission( new ReflectionPermission( ReflectionPermissionFlag.RestrictedMemberAccess ) );
return AppDomain.CreateDomain( "Partial Trust AppDomain: " + DateTime.Now.Ticks, null, setup, permissions );
}
}
}</code></pre>
http://stackoverflow.com/questions/1789834/is-it-okay-to-run-for-loops-in-functional-test-methods2Is it okay to run for loops in functional test methods?dchua2009-11-24T12:39:58Z2009-11-24T22:01:07Z
<p>Is it okay (conceptually) to run for loops in test methods?</p>
<p>I'd like to test a range of parameter values into a controller, to determine if the different inputs return the correct values.</p>
<pre><code> test "logged in user - add something - 0 qty" do
@app = Factory.create(:app)
(0..5).each do |t|
@qty = t
login(:user)
get :add. :id => @app.id, :qty => @qty
assert_nil(flash[:error])
assert_response :redirect
assert_redirect_to :controller => :apps, :action => :show, :id => @app.id
if @qty = 0
assert_equal(Invite.all.count, @qty + 1)
else
assert_something .........
end
end
</code></pre>
<p>Something like that.</p>
http://stackoverflow.com/questions/1775349/how-do-i-setup-a-functional-test-to-authenticate-openid-with-authlogic0How do I setup a functional test to authenticate openid with authlogic?dchua2009-11-21T12:25:53Z2009-11-21T12:25:53Z
<p>I have a functional test that is supposed to call ROTS (Ruby Openid Test Server) to act as an identity.</p>
<p>In my UsersControllerTest, I have the following:</p>
<pre><code> test "creating a user" do
get :create, :user => {
:username => "woot",
:email => "someone@someone.com",
:persistence_token => '6cde0674657a8a313ce952df979de2830309aa4c11ca6...',
:openid_identifier => 'http://localhost:1123/john.doe?openid.success=true'
}
assert_response :redirect
# up to this point, the test passes. The following fails
assert_equal(User.all.count, 1)
end
</code></pre>
<p>Problem iss, I don't know how to continue writing the test after the 'assert_response :redirect' as I know that the identity server needs to return something so that it would continue the block of code. </p>
<p>What should I do to simulate that the identity has been confirmed by the identity server?</p>
<p>Here's what my code look like in my User Controller</p>
<pre><code> def create
@user = User.new(params[:user])
@user.save do |result|
if result
flash[:notice] = "Registration successful."
redirect_to "/"
else
render :action => 'new'
end
end
end
</code></pre>
http://stackoverflow.com/questions/1291136/authlogic-editpasswordreseturl-in-functional-integration-tests0Authlogic edit_password_reset_url in Functional / Integration TestsSiva2009-08-18T00:07:02Z2009-11-14T12:00:01Z
<p>I am trying to implement some tests to validate the behavior for Authlogic password resets as explained in <a href="http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authlogic/" rel="nofollow">http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authlogic/</a></p>
<p>I am using Authlogic, Shoulda, Webrat and Factory Girl and here's my test:</p>
<pre><code>require 'test_helper'
class PasswordResetTest < ActionController::IntegrationTest
setup :activate_authlogic
context "A registered user" do
setup do
@reggie = Factory(:reggie)
end
should "not allow logged in users to change password" do
visit signin_path
fill_in 'Email', :with => @reggie.email
fill_in 'Password', :with => @reggie.password
click_button 'Sign In'
assert_equal controller.session['user_credentials'], @reggie.persistence_token
visit change_password_path
assert_equal account_path, path
assert_match /must be logged out/, flash[:notice]
visit signout_path
assert_equal controller.session['user_credentials'], nil
visit change_password_path
assert_equal change_password_path, path
end
should "allow logged out users to change password" do
visit signout_path
assert_equal controller.session['user_credentials'], nil
visit change_password_path
assert_template :new
fill_in 'email', :with => @reggie.email
click_button 'Reset my password'
assert_match /Please check your email/, flash[:notice]
assert !ActionMailer::Base.deliveries.empty?
sent = ActionMailer::Base.deliveries.first
assert_equal [@reggie.email], sent.to
assert_match /Password Reset Instructions/, sent.subject
assert_not_nil @reggie.perishable_token
#TODO
p "Perishable Token #{@reggie.perishable_token}"
assert_match assigns[:edit_password_reset_url], sent.body
end
end
end
</code></pre>
<p>In the last 2 lines of the test, I am trying to make sure the link sent out has the right perishable_token and it always comes up different between the printed Perishable Token and the token in the link sent out.</p>
<p>How should I test this behavior?</p>
<p>Thanks, Siva</p>
http://stackoverflow.com/questions/1676201/automating-integration-tests-use-xunit0Automating Integration Tests: Use xUnit?Eric J.2009-11-04T19:56:19Z2009-11-08T17:21:11Z
<p>I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)</p>
<p>The questions</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1663515/correct-approach-for-unit-testing-complex-interactions">Correct Approach for Unit Testing Complex Interactions</a></li>
<li><a href="http://stackoverflow.com/questions/771011/what-are-the-pros-and-cons-of-automated-unit-tests-vs-automated-integration-tests">What are the pros and cons of automated Unit Tests vs automated Integration tests?</a></li>
</ul>
<p>cover the "why" and "what" aspects very well.</p>
<p>The question <a href="http://stackoverflow.com/questions/87610/automated-integration-testing-a-c-app-with-a-database">Automated integration testing a C++ app with a database</a> implies that xUnit frameworks are a good way to create and execute integration tests. Are xUnit's really well suited to that task? Are there common gotcha's to be aware of? A good approach to follow?</p>
<p>Are there better approaches (short of possibly purchasing the HP / former Mercury tool suite)?</p>
<p>My specific environment for this project is Java / SpringSource / Hibernate but am also interested in suggestions for the .Net platform.</p>
http://stackoverflow.com/questions/1671221/rails-assertselects-annoying-warnings0(Rails) Assert_Select's Annoying WarningsCalebHC2009-11-04T01:31:07Z2009-11-04T02:53:10Z
<p>Does anyone know how to make assert_select not output all those nasty html warnings during a rake test? You know, like this stuff:</p>
<pre><code>.ignoring attempt to close body with div
opened at byte 1036, line 5
closed at byte 5342, line 42
attributes at open: {"class"=>"inner02"}
text around open: "</script>\r\t</head>\r\t<body class=\"inner02"
text around close: "\t</div>\r\t\t\t</div>\r\t\t</div>\r\t</body>\r</ht"
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1656285/rails-functional-test-of-arbitrary-or-custom-urls0Rails Functional Test of Arbitrary or Custom URLsCraig Walker2009-11-01T03:15:45Z2009-11-01T16:35:30Z
<p>I have a RESTful resource in my Rails app called "Photo". I'm using <a href="http://www.thoughtbot.com/projects/paperclip" rel="nofollow">Paperclip</a> to serve different "styles" of my photos (for thumbnails and the like), and I'm using a custom route to RESTfully access those styles:</p>
<pre><code>map.connect "photos/:id/style/*style", :controller => "photos", :action => "show"
</code></pre>
<p>That's working fine, but I want to write a test to make sure it stays that way. </p>
<p>I already have a functional test to call the Photo controller's show action (generated by scaffold in fact):</p>
<pre><code>test "should show photo" do
get :show, :id => photos(:one).to_param
assert_response :success
end
</code></pre>
<p>That tests the execution of the action at the URL "/photo/1". Now I want to test the execution of the URL "/photo/1/style/foo". Unfortunately, I can't seem to get ActionController::TestCase to hit that URL; the get method always wants an action/id and won't accept a URL suffix.</p>
<p>How do I go about testing a custom URL?</p>
http://stackoverflow.com/questions/1275647/dryer-tests-with-associations-in-factorygirl0DRYer tests with associations in factory_girl Ryan McCuaig2009-08-14T01:47:27Z2009-10-27T18:13:36Z
<p>Can anyone suggest a better way to make a factory use a pre-built model
instance for its association? For example, so that it would be possible
below to define a child of the Message factory so that a call to
<code>Factory(:my_message)</code> could substitute for
<code>Factory(:message,:sender=>@me)</code> ?</p>
<p>Sometimes the setup hash is more involved than in this contrived
example, or is just repeated in so many tests that it would seem better to push it down into the factory.</p>
<p>One alternative I can think of is to define a test helper method
such as <code>create_message_owned_by(@me)</code>, but I'm hoping there's a way within factory_girl itself.</p>
<p>factory_girl factories:</p>
<pre><code>Factory.define :sender do |s|
sender.name "Dummy name"
end
Factory.define :message do |msg|
msg.text "Dummy text"
msg.association :sender
end
Factory.define :my_message, :parent=>:message do |msg|
msg.text "Dummy text"
### ? what goes here for msg.association :sender ? ###
end
</code></pre>
<p>MessagesControllerTest excerpt (using shoulda):</p>
<pre><code>context "on GET /messages" do
setup do
@me = Factory(:sender)
@my_message = Factory(:message,:sender=>@me)
@somebody_elses_message = Factory(:message)
sign_in_as(@me)
get :index
end
should "only assign my messages" do
assert_contains(assigns(:messages), @my_message)
assert_does_not_contain(assigns(:messages), @somebody_elses_message)
end
end
</code></pre>
http://stackoverflow.com/questions/1505833/how-to-assert-action-returns-correct-text0How to assert action returns correct text?jerhinesmith2009-10-01T19:02:52Z2009-10-01T20:04:38Z
<p>Is there a standard or best-practices way to test that an action in rails is returning the correct text? For example, I have a simple action that is used for doing ajax validation that does the following:</p>
<pre><code>def get_object_id
if params[:id].blank?
return render(:text => -1, :layout => false)
end
my_object = MyObject.find_by_id(params[:id].strip)
# If the object is valid return the object id
if my_object and my_object.active?
return render(:text => my_object.id, :layout => false)
end
# Otherwise, return -1
return render(:text => -1, :layout => false)
end
</code></pre>
<p>Right now, I'm using the @response object in my tests ... i.e.:</p>
<pre><code>def test_get_object_id_returns_invalid_for_non_existent_id
# Act
get :get_object_id, :id => 999
# Assert
assert_response :success
assert_equal "-1", @response.body
end
</code></pre>
<p>But, though being mostly new to rails, what I have seen so far seems to suggest that there's probably a better way to do this other than checking <code>@request.body</code>.</p>
<p>So, my question to you ruby experts is: Is this the best way?</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/1469844/how-to-automate-functional-integration-tests-and-database-rollbacks1How to automate functional/integration tests and database rollbacksjuarola2009-09-24T05:04:07Z2009-09-25T10:23:16Z
<p>Hello!</p>
<p>In contrast to my <a href="http://stackoverflow.com/questions/1458524/integration-testing-using-selenium-and-nunit-from-ui-to-db">previous question</a>, i'll try to give my requirements.</p>
<p>I am trying to find some framework/methodology/"thing" that would fit the following:</p>
<ul>
<li>Ability to write an automated test, preferably written in Visual Studio, using C#.</li>
<li>Test should drive a web browser and interact with SUT just like an user would.</li>
<li>Test should be able to setup a test scenario in DB.</li>
<li>Test should be able to assert that user interactions had the expected effect in DB.</li>
<li>After test is completed, it should be able to roll back all changes it made in DB.</li>
</ul>
<p>My first attempt was to use NUnit test to drive Selenium (and Watin before that), but i faced a bit of a problem (check the link above) while using TransactionScope to roll back the changes Selenium-driven browser did in the DB.</p>
<p>Has anyone done anything like this in the "real world"? I've found some references through Google, but haven't been able to find any concrete examples on how to implement this. There wouldn't be any problems if i'd be doing unit testing. In that case TransactionScope would be quite enough.</p>
<p><strong>Edit:</strong> R. Harvey pointed me to <a href="http://stackoverflow.com/questions/768944/rollback-database-after-integration-selenium-tests">this</a> question, which is almost identical to my situation. </p>
<p>However that question is just <em>almost</em> identical. My application is part of a family of services, all of them accessing the same set of database tables. Amount of test data required does not allow for efficient use of drop/create-scripts, so is there some alternate solution for this? </p>
<p>We are using SQL Server 2005, and i'm not very proficient in database magic, so if there's some way to use sql scripting other than drop/create, then that could be an option.</p>
<p><strong>Edit 2:</strong> </p>
<p>Based on the answers and some additional head scratching, we'll go for more lightweight databases for developers to perform unit-, integration- and functional testing. This enables us to use sql-scripts for setting up and tearing down the test.</p>
http://stackoverflow.com/questions/1240057/integrating-automated-web-testing-into-build-process12Integrating Automated Web Testing Into Build ProcessHaacked2009-08-06T16:30:55Z2009-08-12T07:33:26Z
<p>I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past.</p>
<p>I used to have a test project using <a href="http://watin.sourceforge.net/" rel="nofollow">WATIN</a>. You effectively write what look like "unit tests" and use WATIN to automate a browser to click around your site etc.</p>
<p>Of course, you need a site to be running. So I made the test actually copy the code from my web project to a local directory and started a web server pointing to that directory before any of the tests run.</p>
<p>That way, someone new could simply get latest from our source control and run our build script, and see all the tests run. They could also simply run all the tests from the IDE.</p>
<p>The problem I ran into was that I spent a lot of time maintaining the code to set up the test environment more than the tests. Not to mention that it took a long time to run because of all that copying. Also, I needed to test out various scenarios including installation, meaning I needed to be able to set the database to various initial states.</p>
<p>I was curious on what you've done to automate functional testing to solve some of these issues and still keep it simple.</p>
<p><strong>MORE DETAILS</strong>
Since people asked for more details, here it is. I'm running ASP.NET using Visual Studio and Cassini (the built in web server). My unit tests run in MbUnit (but that's not so important. Could be NUnit or XUnit.NET). Typically, I have a separate unit test framework run all my WATIN tests. In the AssemblyLoad phase, I start the webserver and copy all my web application code locally.</p>
<p>I'm interested in solutions for any platform, but I may need more descriptions on what each thing means. :)</p>
http://stackoverflow.com/questions/1192261/how-to-manage-test-fixtures-for-end-to-end-testing1How to manage test fixtures for end-to-end testing?Peter Becker2009-07-28T06:43:47Z2009-07-29T03:47:49Z
<p>Having just <a href="http://techdiary.peterbecker.de/2009/07/functional-testing-of-wars-with-maven.html" rel="nofollow">set up a test framework for a new web application</a>, I realized I missed one of the big questions: "How do I make tests independent from each other?"</p>
<p>Years ago I have set up some complicated Ant scripting to do full cycles of deleting all database tables, creating the schema again, adding test data, starting the application, running one test and then stopping the application. That was a pain to maintain and restricted us to nightly tests due to the time it took to run the full suite. It was still worth it, but I wonder if there is an easier way.</p>
<p>Are there alternatives to this approach? The main criterion is that each test should not be affected by any other test in the suite, no matter if it failed or succeeded.</p>
http://stackoverflow.com/questions/559906/what-kinds-of-unit-tests-pay-off-the-most-in-business-value2What kinds of unit tests pay off the most in business value?Alan2009-02-18T05:06:00Z2009-07-05T16:31:32Z
<p>My question assumes that folks already believe that unit tests of some sort are worthwhile and actually write them on their current projects. Let's also assume that unit tests for some parts of the code are not worth writing because they're testing trivial features. Examples are getters/setters, and/or things that a compiler/interpreter will catch immediately. The contrary assumption is that "interesting" code is worth testing.</p>
http://stackoverflow.com/questions/556006/do-you-need-to-do-unit-and-integration-testing-if-you-already-do-functional-testi2Do you need to do unit and integration testing if you already do functional testing?danswain2009-02-17T08:54:33Z2009-05-20T15:34:23Z
<p>People at my company see unit testing as a lot of extra work, that offers fewer benefits than existing functional tests. Are unit and integration tests worth it? Note a large existing codebase that wasnt designed with testing in mind.</p>
http://stackoverflow.com/questions/867231/ruby-on-rails-functional-testing-with-the-restful-authentication-plugin2Ruby on Rails functional testing with the RESTful Authentication pluginTony2009-05-15T06:19:56Z2009-05-16T01:46:50Z
<p>I started writing functional tests for my rails app today. I use the RESTful authentication plugin. I ran into a couple confusing things I hope someone can clarify for me.</p>
<p>1) I wrote a quick login function because most of the functions in my rails app require authentication.</p>
<pre><code>def login_as(user)
@request.session[:user_id] = user ? user.id : nil
end
</code></pre>
<p>The issue I see with this function, is it basically fakes authentication. Should I be worried about this? Maybe it is okay to go this route as long as I test the true authentication method somewhere. Or maybe this is terrible practice.</p>
<p>2) The second confusing thing is that in some places in my functional tests, I need the full authentication process to happen. When a user is activated, I have the do_activate method create some initial objects for the user. It is analogous to the creation of a blank notebook object and pen object for a student application, if that makes sense.</p>
<p>So in order to properly test my application, I need the user to hit that activation state so those objects are created. I am currently using Factory Girl to create the user, and then calling the login_as function above to fake authentication. </p>
<p>I guess another option would be to skip the full authentication sequence and just create the blank objects with Factory Girl. I could test the proper authentication somewhere else.</p>
<p>What do you think? If I should go through the proper sequence, why isn't the code below invoking the do_activate function?</p>
<pre><code>user = Factory.create(:user)
user.active = 1
user.save
</code></pre>
<p>Thank you!</p>
http://stackoverflow.com/questions/804892/watin-test-data-reset-clean-up1WatiN test data reset/clean upMike7372009-04-30T00:20:27Z2009-05-11T05:50:23Z
<p>I'm wondering how people are currently resetting their data / cleaning up test remnants for their WatiN/Wartir tests?</p>
<p>For example, lets say there's a test to add a user into the system and the username has to be unique. Obviously the first run without any users should work fine, but the second run will fail without manual intervention.</p>
http://stackoverflow.com/questions/793046/testing-whole-programs-best-practices2Testing whole programs. best practicesStefano Borini2009-04-27T10:56:02Z2009-05-06T00:57:08Z
<p>I am currently developing a library and a set of programs using this library, in python.
Unit testing dictates that I import each module from the library, and test the classes and routines within. No problem with that. I have a separate test directory containing all my tests and importing the library modules, which I run while developing.</p>
<p>However, when it comes to testing the programs, things change. To be tested, the programs must run as a whole. The programs assume to find the library installed (which could actually be the case, albeit wrong, if I installed a previous version of it on my machine, adding further trouble). At the moment, my programs are run by a testsuite with a PYTHONPATH definition that I perform by hand, before the deployment (IOW, I don't perform the install), but I don't think I am doing it right. I feel like in general, a program should be tested for functionality when fully deployed, but this would mean that I have to install it every time I want to perform functional testing.</p>
<p>What is your experience and suggestions concerning functional testing of whole programs ? do you do it before or after deployment, and how?</p>
<p>Thanks</p>
<p>Note that I don't include the python tag on purpose. Although my problem is python specific, and I would prefer python-related answers, I think that contribute can be brought also from experts in other languages.</p>
<p><hr /></p>
<p><strong>Edit</strong>: as reported in a comment, the fact is that my program, when installed, has to import modules whose path can be found only when deployed (I download and install the dependencies on the fly, they are not installed on my machine). I cannot manipulate sys.path from the test, because that would imply that I modify the sys.path of a program (my executable) from another program (the testsuite, which runs and spawn a system() call). </p>
<p>In other words, the only way I have to test the program without deploying is to execute the program with PYTHONPATH set to the dir containing the deps and the library that program uses installed by the make script (which, as I said, downloads, compiles and "installs" everything in a temporary directory).</p>
<p>At deployment, the deps and the executables are packaged together in a "OSX bundle"-like structure, which is fully executable and relocatable.</p>
<p><strong>Edit</strong>:</p>
<p>added a 150 bounty to see if I can get a little more feedback.</p>
<p><strong>Edit</strong>:</p>
<p>I appreciated all the answers and voted up all of them. The choice has been a hard call for me, but I've been recalled by LudoMC of the V-model approach to testing I studied long ago. Thanks to all for the very good answers.</p>
http://stackoverflow.com/questions/312904/what-is-the-right-balance-between-unit-vs-functional-testing-in-a-typical-web-ap5What is the right balance between unit vs. functional testing in a typical web application?Jan Horalik2008-11-23T20:22:28Z2008-11-24T14:54:57Z
<p>Unit tests are cheaper to write and maintain, but they don't cover all scenarios. What is the right balance between them?</p>
http://stackoverflow.com/questions/182325/why-are-functional-tests-not-enough-what-do-unit-tests-offer5Why are functional tests not enough? What do unit tests offer?Epaga2008-10-08T11:49:01Z2008-10-08T14:49:24Z
<p>I just had a conversation with my lead developer who disagreed that unit tests are all that necessary or important. In his view, functional tests with a high enough code coverage should be enough since any inner refactorings (interface changes, etc.) will not lead to the tests being needed to be rewritten or looked over again.</p>
<p>I tried explaining but didn't get very far, and thought you guys could do better. ;-) So...</p>
<p>What are some good reasons to unit test code that functional tests don't offer? What dangers are there if all you have are functional tests?</p>
<p><strong>Edit #1</strong> Thanks for all the great answers. I wanted to add that by functional tests I don't mean only tests on the entire product, but rather also tests on modules within the product, just not on the low level of a unit test with mocking if necessary, etc. Note also that our functional tests are automatic, and are continuously running, but they just take longer than unit tests (which is one of the big advantages of unit tests).</p>
<p>I like the brick vs. house example. I guess what my lead developer is saying is testing the walls of the house is enough, you don't need to test the individual bricks... :-)</p>