Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Modern Dev - TDD Assignments
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Rafeh
Modern Dev - TDD Assignments
Commits
953bf8c7
Commit
953bf8c7
authored
1 week ago
by
Daniel Rafeh
Browse files
Options
Downloads
Patches
Plain Diff
Test successful
parent
f51cf35f
Branches
develop
feature/mixture
main
No related tags found
No related merge requests found
Pipeline
#20056
passed
1 week ago
Stage: test
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
stringCalculator.py
+5
-0
5 additions, 0 deletions
stringCalculator.py
with
5 additions
and
0 deletions
stringCalculator.py
+
5
−
0
View file @
953bf8c7
...
...
@@ -15,6 +15,7 @@
# Bei der Eingabe von Texten mit leeren Trennzeichen (z.B. "//;\n") soll die Zahl 0 ausgegeben werden
# Bei der Eingabe von "1, " soll die Zahl 1 ausgegeben werden
# Bei der Eingabe von "-2, 5" soll "negatives not allowed" ausgegeben werden
# Bei der Eingabe von "//;\n-1;2;1001;-3" soll "negatives not allowed [-1, -3]" ausgegeben werden
import
unittest
from
abc
import
ABC
,
abstractmethod
...
...
@@ -162,5 +163,9 @@ class TestStringCalculator(unittest.TestCase):
res
=
self
.
c
.
add
(
"
-2, 5
"
)
self
.
assertEqual
(
res
,
"
negatives not allowed
"
)
def
test_mixture
(
self
):
res
=
self
.
c
.
add
(
"
//;
\n
-1;2;1001;-3
"
)
self
.
assertEqual
(
res
,
"
negatives not allowed
"
+
str
([
-
1
,
-
3
]))
if
__name__
==
"
__main__
"
:
unittest
.
main
()
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment