|
|
stackoverflow.com
- 2012-07-11 13:44:21
- Similar
- Report/Block
I'm trying to work out how I can run an ant task without actually needed a build.xml. In particular I want to run a JUnit task with a formatter. In xml format this looks like below: <junit printsummary="true" errorProperty="test.failed" failureProperty="test.failed"> <classpath refid="run.class.path" /> <!-- console log...
|
|
|
stackoverflow.com
- 2012-04-28 01:05:42
- Similar
- Report/Block
I've downloaded Junit version 4.10 and loaded the jar via the build path but I seem to get this error message when running a Junit test in Eclipse: Error: Could not find or load main class org.eclipse.jdt.internal.junit.runner.Re moteTestRunner My Test class is the following: import org.junit.*; import static org.junit.Assert.assertEquals;...
|
|
|
stackoverflow.com
- 2012-07-17 12:08:12
- Similar
- Report/Block
I'm suppose to run some jbehave(automated) tests in bamboo. Once the tests run i'll generate some junit compatible xml files so that bamboo could understand the same. All the jbehave tests are ran as part of a script, because i need to run the jbehave tests in a seperate display screen(remember these are automated browser tests). Example...
|
|
|
|
stackoverflow.com
- 2013-05-22 02:17:55
- Similar
- Report/Block
After changes to source and building with gradle in Android Studio (I/O preview) AI - 130.677228 the build fails with the following error: Gradle: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileDebugAidl'. > No signature of method: com.android.ide.common.internal.Waitable Executor.waitForTask...
|
|
|
computerhope.com
- 2012-09-03 22:05:47
- Similar
- Report/Block
The Microsoft Windows Task Scheduler is a software program included with Windows that allows for a computer task to be planned when a pre-determined trigger occurs. For example, if you perform a task such as running a batch file every Monday a scheduled task can be setup in Task Scheduler to run that batch file every Monday your computer...
|
|
|
stackoverflow.com
- 2012-04-01 01:30:09
- Similar
- Report/Block
I have a long running task that I want completed, even if the application gets pushed to the background. From the documentation I can see that the way to do this is to use the beginBackgroundTaskWithExpirationHandler : feature and asynchronously start a task running as in the following code snippet: UIApplication* application = [UIApplicat...
|
|
|
sevenforums.com
- 2012-07-27 20:06:26
- Similar
- Report/Block
I recently had this problem when trying to start defragmenter. I tried starting up task scheduler then it gave me the error when i opened up the program. "the remote computer was not found" i tried refreshing and the task scheduler screen and it said task scheduler service on target computer cannot be contacted. I checked task scheduler...
|
|
|
|
stackoverflow.com
- 2012-03-04 15:34:34
- Similar
- Report/Block
I have a rake task which runs mailman under the rails environment. I'd like to ensure that rake task is always running via a daemon. My rake task is rake incoming_mail How would I go about daemonising that?...
|
|
|
stackoverflow.com
- 2012-03-20 22:17:46
- Similar
- Report/Block
I have recorded a test case in Selenium IDE and want to convert that to Junit. When I try to change through format, I have two options called ‘JUnit WebDriver’ and ‘JUnit WebDriver Backed’. Can you guys please explain me what is the different between this WebDriver and WebDriver Backed? Sorry I am new to Selenium, started learning through...
|
|
|
dbforums.com
- 2013-04-30 22:43:30
- Similar
- Report/Block
Using DB2 9.5 LUW on Windows is there any way to add tasks to Task Scheduler through CLI or a script? I've setup a clone of one of our 9.5 LUW servers, but the original server has about 50 tasks setup in Task Scheduler I need to move yet I can't find any way to do it. I opted to not copy ToolsDB over, but surely there's some way to import...
|
|
|
snipplr.com
- 2013-03-13 00:51:12
- Similar
- Report/Block
Custom task using gradle java plugin for build runnable jar file with full dependencies set...
|
|
|
stackoverflow.com
- 2012-05-21 17:08:38
- Similar
- Report/Block
I need to run about 1,000 tasks in a ThreadPool on a nightly basis (the number may grow in the future). Each task is performing a long running operation (reading data from a web service) and is not CPU intensive . Async I/O is not an option for this particular use case. Given an IList of parameters, I need to DoSomething(string x). I am t...
|
|
|
|
stackoverflow.com
- 2012-03-07 21:14:21
- Similar
- Report/Block
I am currently doing some research and I am looking for open source Java projects that use JUnit . Ideally I would like to have projects that vary in size/complexity/domain as well as the test suite coverage. I seem to be having a hard time finding suitable open source projects that fit these criteria: Project has a number of JUnit test...
|
|
|
stackoverflow.com
- 2013-06-07 15:59:10
- Similar
- Report/Block
Looking at the latest versions of JUnit[v 4.11] and TestNg[v 6.8.5] as of today, I see no big differences in both the frameworks. If I am using Spring MVC in my project and have several layers and need unit/integration tests at all the controller / service / dao layers what framework would really be helpful for me. I have prior experience...
|
|
|
stackoverflow.com
- 2012-03-22 11:30:22
- Similar
- Report/Block
I am trying to execute a list of JUNIT test cases through JUNIT runner. The test case names are available in a excel sheet and I am retreiving the value one after the other. I am not sure where I am going wrong. but my test runner is not executing. Could somebody help me on this. Cell celltest = sheet.getCell(col,row); String KeywordTest=...
|
|
|
stackoverflow.com
- 2012-07-02 21:59:41
- Similar
- Report/Block
Building on this question: Django Celery Time Limit Exceeded? I have some tasks that may run for sometime. However, most tasks should not take more then a few seconds. I don't want to set the global timeout to account for those long running tasks. Rather, I would like to have a global hard timelimit that is short, and manually adjust the...
|
|
|
stackoverflow.com
- 2012-03-23 11:19:01
- Similar
- Report/Block
I'm using pax-exam to load, activate and access osgi bundles. The following source code is my pax-exam test and it runs using pax-exam 2.3 using native container. package fr.xlim.ssd.vtg.osgi; import java.net.URISyntaxException; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Inject; import org.ops4j.pax.
|
|
|
stackoverflow.com
- 2012-02-27 23:38:26
- Similar
- Report/Block
Error is at the bottom I am getting this error during the -build-setup task when trying to run a build.xml file (generated by the android sdk) for a project that has a couple dependencies and the task i am trying to run is -compile . I am using eclipse to run this ant file using the auto build function. I assigned this build.xml file as...
|
|
|
|
stackoverflow.com
- 2012-04-27 13:07:51
- Similar
- Report/Block
I have a situation where I need to invoke a rake task in AfterConfiguration in Cucumber hooks.rb file. At the moment when I tried to invoke Rake task I get following error 'Don't know how to build task rake db:test_seed' I m using rails 3.2.2 Any help is highly appreciated.
|
|
|
stackoverflow.com
- 2013-03-21 18:07:00
- Similar
- Report/Block
I created this form : <%= form_for @task do |task| %> <%= task.hidden_field :user_id, :value => @user.id %> <%= task.label :task %> <%= task.text_area :task %> <%= task.label :deadline %> <%= task.text_field :deadline %> <%= task.submit "Add" %> <% end %> and the controller: def new @task = Todo.new end def create @task = Todo.n...
|
|
|
stackoverflow.com
- 2012-07-24 03:53:13
- Similar
- Report/Block
I am working with the Task Parallel Library and I am using the Task Factory to create and start a list of new tasks. After starting the tasks, I make a call to Task.WaitAll(...) to wait until all the Tasks return. The code looks similar to the following. Tasks<MyClass>[] tasks = .../Create List of Tasks and Start using TaskFactory.S...
|
|
|
|
sevenforums.com
- 2013-02-08 06:34:27
- Similar
- Report/Block
I never to into the Task Scheduler but today I did and got the following: "Task validation task: The task image is corrupt or has been tampered with" Seems to be a fairly common error from from what I can determine - and I have no experience with dealing with the registry and am reluctant to do so. Can anyone tell me what I should be doin...
|
|
|
sevenforums.com
- 2013-03-14 01:25:05
- Similar
- Report/Block
I a couple of odd behaviors from my core i5 750 on ASUS P7P55D Pro. Core 2 is often running about 10 - 20% higher than all the others according to Core Temp even at idle. According to Windows Task Manager the CPU is only running at minimal % and no programs are showing as dominate (all under 1% usage). Is this normal? Do I have something...
|
|
|
eightforums.com
- 2013-02-15 05:07:03
- Similar
- Report/Block
My stupid task scheduler wont let me create basic tasks. I enter in all the info and the time and date I want the task to be displayed but when I go to click finish it says the following error has occurred 2147750704. Im running Windows 8. Ive seriously had nothing BUT problems with this version. Not impressed. Stupid.
|
|
|
|
stackoverflow.com
- 2012-07-12 09:48:28
- Similar
- Report/Block
I have quite difficult situation, i am developing automation framework using selenium webdriver. I am using JUNIT 4.0 and ANT 1.8 for reporting and execution purpose. I have used parameterized runner to run test case with diffrent dataset, and also implemented screencapturing functionality in case of failures. so while generating JUNIT re...
|
|
|
stackoverflow.com
- 2012-03-30 14:21:50
- Similar
- Report/Block
I have a situation where I need to watch the tests, gather information, and then build a report from the tests. The tests will be started via TeamCity. I create a TestWatcher object to listen for test results, and this TestWatcher is included in each JUnit class that contains tests. I had a listener which would listen to when the entire s...
|
|
|
stackoverflow.com
- 2013-02-18 11:00:17
- Similar
- Report/Block
I'm pretty new in Java, so don't be rude ;-) I got a task to do and there are some JUnit-Tests to verify my solution. When I'm trying to run them, it takes some time and then I get the following errors: Could not connect to: : 51219 java.net.ConnectException: connect: Address is invalid on local machine, or port is not valid on remote ma...
|
|
|
|
stackoverflow.com
- 2012-04-20 21:59:12
- Similar
- Report/Block
I have some code that references a filename. On the server, this reference is relative to my directory. When I'm running tests, though, the relative root doesn't seem to be set - only absolute paths, starting at the root of my local HD, actually find the files. I'm testing in the context of an AppEngine LocalServiceTestHelper , which ret...
|
|
|
teamworkpm.net
- 2013-05-31 14:07:14
- Similar
- Report/Block
The release of sub-tasks last month was a much awaited for, and much loved, update to TeamworkPM. As with all new features there is often a few tweaks and updates that people would like to see once they start using it. The most common request that people were looking for was to be able to convert existing tasks in to sub-tasks and vice ve...
|
|
|
java-forums.org
- 2013-02-20 19:38:10
- Similar
- Report/Block
How do I test a set method in JUnit? Because whenever I try to make the test case I get an error that says "Type mismatch: cannot convert from void to int"?...
|
|
|
|
blackberryforums.com.au
- 2013-05-15 10:41:49
- Similar
- Report/Block
Configuration: Domino 9.0 (http task is running) BES Express 5.0.4 Windows Server 2008 R2 after upgrading to Notes9 the task nbes.exe (DBES Mail Agent) is not registering as Notes Task after starting it as a program after the domino server start it is functioning and being displayed in the list of Domino Tasks: [0A18:0009-19E8] DBES Mail...
|
|
|
stackoverflow.com
- 2012-03-26 23:49:59
- Similar
- Report/Block
I have a quick question about altering the build path as the code is running. For example, I have a class which downloads a .jar file from the internet and then into the same directory as the code is running from. How, if possible, could I load the jar into the build path to access the classes within the .jar file. If anyone has any id...
|
|
|
stackoverflow.com
- 2012-04-25 17:34:23
- Similar
- Report/Block
What's the definition of these two, and what's the difference between a "heterogeneous task" and a "homogeneous task"? When I read the Java Concurrency In Practice book, these two phrases jumped out. In my opinion within the book, it is the task size and handling time of task. But I don't understand it that well. I've googled it, but can...
|
|
|
|
stackoverflow.com
- 2013-02-20 02:44:09
- Similar
- Report/Block
I have a batch script called from Ant exec task to compile some CSharp code. The batch script is structured in the following way msbuild.exe %ARGS% echo %ERRORLEVEL% Now when the task is run in Ant, I get the following result: [exec] Time Elapsed 00:00:09.48 [exec] 0 BUILD FAILED C:\proj uild.xml:410: exec returned: 2 How is it possib...
|
|
|
stackoverflow.com
- 2012-08-06 09:45:00
- Similar
- Report/Block
I just noticed that windows 7 task scheduler doesn't use the latest updated environment path variable. Task scheduler is up and running and I changed the path variable. New processes that run in the task scheduler have the old path. I had to kill the taskeng.exe so that it can start using the latest path. So looks like Task scheduler spaw...
|
|
|
sevenforums.com
- 2013-03-19 04:04:09
- Similar
- Report/Block
When I launch Task Manager, the only screen I have access to is the Processes screen - and I do not have any options to see what applications are running, or anything other than which processes are running, which makes it much more difficult to determine what's going on with my PC. I have run multiple virus scans, with Norton, with Malwar...
|
|
|
|
stackoverflow.com
- 2012-04-02 08:35:37
- Similar
- Report/Block
I need to make disable or inactive the home button of my android phone while running the async task created by me.
|
|
|
stackoverflow.com
- 2013-03-20 07:52:43
- Similar
- Report/Block
My hadoop job's mapper task always hung there even its progress is 100%, its status is still running. And I see lots of merge operation is done in the mapper task log. I have already change the parameter io.sort.mb and io.sort.factor to a larger number. But it didn't solve my issue. I have around 2000 mapper task and the overall output si...
|
|
|
stackoverflow.com
- 2013-03-19 16:26:22
- Similar
- Report/Block
In my code I have 2 types of tests: fast unit tests and slow performance tests . I am trying to ensure that the performance tests are never run unless the user explicitly wants to run them (e.g. using the right test suite or maven build profile) because this kicks of a remote process that is computationally-intensive on a grid. I underst...
|
|
|
|
network-marketing.ning.com
- 2013-06-01 12:54:33
- Similar
- Report/Block
There are many shoe brands that manufacture cushioned running shoes in different designs to cater to all the needs of a runner. Given below are some of the cushioned running shoes that top the list of best running shoes.These were some of the cushioned running shoes that you can try, but choosing running shoes is quite a tedious task. It...
|