Tag Info

Hot answers tagged

8

Call done_testing() and exit. ok( first_test(), 'first test' ) or done_testing, exit; ok( second_test(), 'second test' ); ... In other cases, you can use the skip function inside a block with a SKIP label. SKIP: { ok( first_test ) or skip "useless to run the next 4 tests", 4; ok( second_test ); ok( third_test ); ok( fourth_test ); ...


4

Since you cannot create an instance of an abstract class you must use a derived class to test it. You can create a very simple class that extends the abstract class for testing purposes. When testing ensure that the subclass is used to test all methods requiring testing in the abstract class.


3

You are declaring stu inside of a for loop, so it is limited to the scope of the loop. You then try to use it outside of the loop, where it is undeclared. for(int w=0;w<t;t++) { ... int stu[n[w]]; // Beware: stu is a VLA. Non-standard C++. // OK to use stu here ... } // stu doesn't exist here Also note that standard C++ does not support ...


3

Some small improvements could be made: 1) You only need to store one session in which you would put the user id after they have logged in. 2) Don't use mysql anymore. Use PDO its a driver that enables youy to use parameterized querys to prevent sql injection. 3) For securely storing passwords use bcrypt here is a good answer on how to use it: Link


3

@RunWith isn't a Spring annotation. It's a JUnit one. It doesn't let you switch between JUnit and TestNG, as you seem to think. Instead, it lets you run JUnit tests in different ways, like with the addition of the Spring Test Framework. In that framework, Spring has provided ExpectedException for some time, but it's no longer needed because recent versions ...


3

Yes, there is: the assert keyword needs to be enabled using the -ea flag, like java -ea MyClass The assert can therefor be turned on and off without any changes to the code. The Assert class will always work instead. So, if you're doing testing, use the Assert class, never the assert keyword. This might give you the idea all your tests are passing, and ...


2

Test::Harness and friends isn't really an appropriate choice for this task, unless you want to modify all 100 of your scripts to emit TAP data instead of a log file. Why not just write a Perl script to run all your Perl scripts? use strict; use warnings; my $script_dir = "/path/to/dir/full/of/scripts"; opendir my $dh, $script_dir or die "Can't open dir ...


2

First, "the standard Python data structure interfaces" are not lists, sets, dictionaries, queues, etc. Those are specific implementations of the interfaces. (And queue isn't even a data structure in the sense you're thinking of—its salient features are that its operations are atomic, and put and get optionally synchronize on a Condition, and so on.) Anyway, ...


2

This following code isn't going to return true: browser.div(:class => "more-links").a(:text => "Third Link") #=> #<Watir::Link:0x..f99c8864c located=false specifiers={:tag_name=>["a"], :text=>"Third Link"}> So, the assert_equal is returning false. If exists? is appended to that line, then it returns true: browser.div(:class => ...


2

The easiest way to screw up is by SQL injection (assuming you are using database) - there are even bots out there trying to insert code to your webpage though SQL injection and deliver malwares I would secure every SQL statement (no matter it's INSERT / SELECT / UPDATE / DELETE) as long as there are user input parameters. For strings you have already ...


2

There's no good reason to store the password (or the hashed password, if that's what you are doing) in the session. Passwords are secret. You should be very careful about how you handle other people's secrets. Storing the unique name (or email) is sufficient to determine that a user is logged in. Some other problems I spotted: Password field in the top ...


2

To make more room in the database, open any load test [see note]. Right click in the load test and select manage test results, or click the next-to-rightmost icon above the load test pane. One of the drop-down lists in the window allows the selection of all load test results. Select one or more result files that are no longer wanted and remove them. Removal ...


2

This might be happening because the test database doesn't have show_extras column in the User table currently, while the development database does. Did you do rake db:test:prepare recently? You might have to run that in order to create the new columns in the database.


2

Just a follow up addition, you can create an alias in your .bashrc and preparing the test database will be done automatically: # ~/.bashrc alias migrate='rake db:migrate && rake db:test:prepare' Now when you are ready to migrate the database, just run migrate and everything is taken care of. No more 30 minutes trying to figure out why your tests ...


2

Pretty simple, this is an example of how you can get to done: http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/examples/embedded/src/main/java/org/eclipse/jetty/embedded/ManyContexts.java And some general Documentation: http://www.eclipse.org/jetty/documentation/current/embedding-jetty.html


2

The class RobolectricContext is not required any more. Further it does not exist in Robolectric 2.0. You can simply override methods from within the RobolectricTestRunner. For example, finding the AndroidManifest.xml can be achieved via: @Override protected AndroidManifest createAppManifest(FsFile manifestFile) { if (!manifestFile.exists()) { ...


2

First of all, setters are a code smell, in no small part because they increase the complexity of testing. They do this because they potentially increase number of possible states an object can be in. The best practices are: Minimize setters Every derived object has to pass every base class test, so make sure you set your tests up to do just that. If they ...


2

you can run javascript to read data and inject it to html tag then read the html tag value: JavascriptExecutor executor = (JavascriptExecutor) driver; executor.executeScript("var y = Highcharts.charts[0].series[0].data[0].y;$('body').append('<span id=\"testTag\">'+y+'</span>');"); WebElement y = ...


1

There are several things one can do. One can modify jsp in the tomcat/temp directory. The change will be available immediately without any recompiling/reloading One can use the remote Tomcat debugging (from Eclipse). This debugging allows one to change the source code and this change will be propagated to Tomcat immediately The best way to organize your ...


1

I suggest you use PICT for generating effective combinations to test. Take a look at http://msdn.microsoft.com/en-us/magazine/ee819137.aspx The tool can be downloaded from http://download.microsoft.com/download/f/5/5/f55484df-8494-48fa-8dbd-8c6f76cc014b/pict33.msi You can look for similar tools at http://pairwise.org/tools.asp


1

Inputs: 0-4 inputs 5-9 inputs More than 9 inputs Values: 0-100 101-999 Greater than 999 The program accepts when there are between 5 and 9 inputs and each input value is a 3-digit number between 101 and 999.


1

In my opinion, the more correct way is to use the actual tool for running tests. E.g. in case of nose: ./manage.py test <app> --verbosity 2 --collect-only FYI, py.test also has --collectonly option to print tests instead of executing. Also see: List all Tests Found by Nosetest


1

You'll need (possibly virtual) machines running one of each operating system. Personally, I just run my unit tests on different physical machines, but nearly all of my code is operating-system independent, so I can do most of my development on one operating system during the day and just run the tests on the other OSes at the end of the day. If you have ...


1

For Coded UI and for Web and Load tests, the test results are stored in the TestResults directory which is normally in the same directory as the solution (ie the .sln) file. The directory normally hold the results of the most recent 25 runs. The TestContext object within a Coded UI test has a number of members with Directory in their name allowing access to ...


1

You have a lot going on in your test helper. It seems that you have copied several different approaches to running minitest in your rails tests. I suggest the following: Remove the following from your test helper: # database cleaner DatabaseCleaner.strategy = :transaction class MiniTest::Spec before :each do DatabaseCleaner.start end after ...


1

If you add the following in DataSource.groovy an empty database will be created before the integration tests are run: environments { test { dataSource { dbCreate = "create" } } } By default each integration test executes within a transaction that is rolled-back at the end of the test, so unless you're not using this ...


1

Perhaps this is what you're looking for: https://docs.djangoproject.com/en/dev/topics/auth/passwords/ Basically, create a subclass of django.contrib.auth.hashers.PBKDF2PasswordHasher and add your new hasher as the first entry in PASSWORD_HASHERS in your settings.


1

Try this one to your url parameters for encryption and decription $salt ='The key you can use anything'; Encryption: function simple_encrypt($text) { return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $salt, $text, MCRYPT_MODE_ECB, mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB), MCRYPT_RAND)))); } Decription: ...


1

That code looked wrong to me at first. Usually, a future is computed on another thread and is completed when that other thread has finished computing the result. So it looks quite wrong to assert that the future isCompleted right after the future is launched, without waiting for it to complete. But what they explain in the doc you linked to is that when ...


1

Using dut as the instance name is fine. You can also use uut instead, if you prefer. You should move the clock generation into its own initial block, then call $finish at the end of your original initial block. This should get you further. Now, 4 signals become known: initial begin rst = 0; opcode = 0; SP = 255; CCRin = 0; pc = 0; ...



Only top voted, non community-wiki answers of a minimum length are eligible