Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
31 views

I am trying to write a rest-assured test, that uses a signed URL from a previous request, in order to upload a file. This is what I tried so far: try { uploadPathUrl = URLDecoder.decode(...
miruraluale's user avatar
0 votes
0 answers
25 views

I am working on setting up code coverage for my Appium test suite on an iOS app, and I am having trouble getting it to work. I’ve configured the necessary settings in both Xcode and Appium ...
Anchal Arora's user avatar
3 votes
1 answer
862 views

I tried following another related post on this topic with the creator's same outcome. Since its post is dead I'd like to try again if someone has an idea on how to mock the node:crypto function or ...
Alberto's user avatar
  • 41
0 votes
2 answers
37 views

I've a Laravel app with api routes using Sanctum authentication. When I try to write a feature test for any api route, I always receive an error: "message": "SQLSTATE[23000]: Integrity ...
Eduardo Corrales's user avatar
0 votes
1 answer
30 views

I need to test my web site having 20 user roles and 40 permissions across different web pages, which Orthogonal array will be the closest to consider for this scenario i.e. two factors first with 20 ...
arung's user avatar
  • 71
0 votes
0 answers
22 views

Im writing Unit tests for a function written in C++14 version. Function majorly produces different console Outputs according to branches or parameter conditions using 'sprintf'. Is there any possible ...
Srivaths Gondi's user avatar
2 votes
0 answers
42 views

I ran into an issue uploading file (png/jpg) with projectId, AppID and assets= [{"label": "image"}]. I do not need to use token. Here is what I used to write script: Feature: ...
Latha's user avatar
  • 29
0 votes
1 answer
153 views

Question: How to start symfony server within test env? The command takes no --env parameter and it does not recognize the option configured in .env.local. Prefixing the command with environment ...
rubberchicken's user avatar
1 vote
0 answers
125 views

Often an html element can be found by different locators. To find the <h2>...</h2> element <div> <section> <div class="articleheader"> <...
surfmuggle's user avatar
  • 6,040
0 votes
2 answers
1k views

How to configure .NET Aspire tests to use specific ports from launchSettings.json for each project? I am using .NET Aspire to run all my projects perfectly. Now, I am creating tests and want them to ...
man developer's user avatar
1 vote
1 answer
222 views

I have an example script called main.cpp which reads as follows: #include <boost/regex.hpp> #include <iostream> #include <string> int main() { std::string line; boost::regex ...
jimbob97's user avatar
0 votes
0 answers
112 views

I wrote the code for this model, and I also have confirmation of the output correctness for the summary, but in the section: # UNQ_C1 # GRADED CELL: Sequential model model = Sequential( [ ...
Kasra Askarizadeh's user avatar
0 votes
1 answer
97 views

On a newly created Maven / Java project the pom dependencies were set for Gauge. After scripting the specs, step-definition, function layer, and page layer the IntelliJ throws the following error upon ...
hirosht's user avatar
  • 982
1 vote
4 answers
119 views

my django app has a env var DEMO which, among other thing, dictate what endpoints are declared in my urls.py file. I want to unit tests these endpoints, I've tried django.test.override_settings but I'...
Jean Bouvattier's user avatar
0 votes
0 answers
22 views

I am a software QA intern can anyone give me a real mobile test plan documentation for my studies. tell me where can I download test plan documentation(any sites name) I try to find via google but ...
Kasuni's user avatar
  • 1
0 votes
0 answers
15 views

In the contribution guidelines, it is clearly mentioned that "All new features and bug fixes must include adequate test coverage." However, I’ve noticed that most security patches seem to ...
Indunil Umayanga's user avatar
0 votes
2 answers
91 views

I am getting a 415 error while trying to test one of my @Controller's methods. Here is my code. Test Class: @SpringBootTest(classes = APIController.class) @AutoConfigureMockMvc class APIControllerTest ...
Iscee's user avatar
  • 1
-1 votes
1 answer
46 views

I have a simple project structure: I am trying to test "addition" function inside of the src/calculator.ts export function addition(a: number, b: number): number { return a + b; } Here'...
bl4z3rr666's user avatar
0 votes
0 answers
33 views

I’m using Flask’s session storage to temporarily save a list of dataclass objects. Here’s an example of the Transaction class and my TransactionMemoryRepository: @dataclass class Transaction: ...
UrbanoJVR's user avatar
  • 1,347
0 votes
0 answers
22 views

Where is some external APK It's required to do some automation tests on it I'm trying to use Kaspresso+Kautomator (wrapper over express+uiautomator) to accomplish it If application is already launched,...
comdiv's user avatar
  • 959
0 votes
0 answers
206 views

I'm trying to verify a receipt with the App Store server in the sandbox environment. I've checked all values are correct but keep receiving: { "environment": "Sandbox", &...
Quang Lê's user avatar
-1 votes
1 answer
65 views

I want to create test branch for testing purpose which is hosted in local repository server, before eventually pushing to master branch in remote repository server. What are the correct steps required?...
maspai's user avatar
  • 435
1 vote
2 answers
96 views

I'm using Lombok on my Java project, with Maven, but when I try to access an attribute of my User class, annoteded with @Data (so I'd expected that I'd have getters and setters of the attributes) in a ...
João Filippe Rossi Rodrigues's user avatar
0 votes
0 answers
40 views

Here is my pom.xml file. Why this parallel execution does not work? This executes fine sequentially POM file <?xml version="1.0" encoding="UTF-8"?> \<project xmlns="...
Amalmal's user avatar
2 votes
1 answer
104 views

Using State as an alternative to IO in testing Take a simple function like this foo :: IO () foo = putStrLn "ciao" This is not testable, because it affects the state of the terminal, which ...
Enlico's user avatar
  • 30.2k

1
5 6
7
8 9
1010