Questions tagged [suite]
132 questions
0
votes
0 answers
How can I prevent duplicated executing tests about Suite in JUnit4?
We are using Java 8 and Junit version 4.13.2, and we want to bundle the following two tests into a TestSuite to test them.
@RunWith(SpringRunner.class)
@SpringBootTest
@Transactional
public class ATest {
// Some…

Taeho Kim
- 1
- 1
0
votes
1 answer
Extracting failed columns from Deepchecks
How can I extract from Deepcheck's custom suite result the failed checks + exact "problematic" columns.
In my example I had 2 failed checks 'Feature Drift' & 'Multivariate Drift'.
For both checks the "problematic" columns were 'col_1' , 'col_5' and…

Boris
- 2,005
- 2
- 11
- 10
0
votes
0 answers
how to getting parameter from a user in oracle suite8
i want to crate an export and i want to inserting in the SQL query a parameter that the user will enter (like a dateparameter), woh can i do it?
select zpos.ZPOS_ORIGINATED_XCMS_ID xcms_id,
TO_NUMBER(sum(case zdco_cdt when 1 then…
0
votes
0 answers
Override a global parameter value in a class when used in Junit 5 Suite Maven build
In JUnit 4, you could use @BeforeAll in a Test Suite and assign a global variable inside the class being called. See below
@SuiteClasses({
PassFail.class
})
public class TestSuiteTest
{
public static TestConfig config = new TestConfig();
…

Brandon Ford
- 1
- 1
0
votes
1 answer
Can I use TLSv1.3 ciphers in TLSv1.2 session?
Windows IIS Server 10 supported TLS_AES_256_GCM_SHA384 on TLS 1.3.
But my application max TLS version TLS 1.2 . I can't send request to server due to tls mismatch.
TLS_AES_256_GCM_SHA384 is not found in my app. How can I use this CipherSuite ?
Note…

star.java
- 11
- 5
0
votes
1 answer
Gatling Test suite Java
We run our test in Jenkins from package where we have 10 classes. Each class represents one scenario.
At the end we have one graph trend where we have trends for all tests.
But when we try to add assertion and assertion failed, the build failed…

Typ
- 29
- 3
0
votes
0 answers
Java.lang.NoClassDefFoundError: junit/framework/TestCase
After upgrading from JUnit 4 to JUnit 5 getting this error when i am trying to run test as JUnit in eclipse.
Getting warning: failed to load class 'org.eclipse.jdt.internal.junit.runner.junit3.junit3TestLoader$1'

Aayush Grover
- 53
- 1
- 4
0
votes
1 answer
Regarding regression suite and smoke test suite implementation in Nunit Framework : C# Selenium
We have been using Nunit Framework for our Test Automation Project.
Programming Language : C#
Automation IDE : Visual Studio, Selenium Libraries
Currently we are running all tests in a single namespace and class file.
We have got a requirement to…
0
votes
1 answer
How to create a test suite inorder to run a single test cases with 50 different users
I have a scenario in which i need to run a login test case with 50 different users. I have created XML suite in order to generate dynamic XML file and using that to run the test cases. Could any one please help me on what i need to include in my…

Gopi
- 21
- 1
0
votes
2 answers
0
votes
1 answer
Google Gusuite Login Issue
my gsuite account is suspended i am trying to login to my account I am using the same email and password which I used to register into gsuite but now it is giving me error enter image description here

alvina ashraf
- 61
- 1
- 3
0
votes
0 answers
How to manually edit testng.xml in eclipse Version: 2020-06 (4.16.0)
Can anybody suggest me how to manually edit TESTNg.xml file in Eclipse
Now with new version it has no option for editing.Also i created my Testng.xml my converting my code to TestNG,Then testng.xml file got created.
My classes in testng.xml are as…

Ravneet Kaur
- 21
- 1
- 6
0
votes
1 answer
junit5 how run all classes in test folder?
How i run all Test Class in src/test/java/* from Executor?
package it.anas.testSuite;
import org.junit.runner.JUnitCore;
public class Executor {
public static void main(String[] args) {
…

Catanzaro
- 1,312
- 2
- 13
- 24
0
votes
1 answer
How to configure suite xml file for running one test many times for cucumber
I am using cucumber for my test,my suite file looks like the following:
blabla........

amber
- 1
- 1
0
votes
1 answer
TestSetFailedException only on Linux
We are trying to run the testng file through maven command.
The testng file name: testSMOKE.xml.
The maven command:
mvn clean test -Dtestng.suite.xml.file=config/components/smoke/testSmoke.xml
The command works in Windows machines, but the same…

Manigandan Seetharaman
- 159
- 1
- 1
- 9