Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sst-tippytipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Christoph Thelen
sst-tippytipper
Commits
5d933077
Commit
5d933077
authored
Sep 04, 2018
by
Christoph Thelen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add unit testing
parent
255e1b69
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
1 deletion
+23
-1
.idea/modules.xml
.idea/modules.xml
+1
-1
.idea/vcs.xml
.idea/vcs.xml
+6
-0
app/build.gradle
app/build.gradle
+1
-0
app/src/test/java/net/mandaria/tippytipper/services/TipCalculatorServiceTest.java
...ndaria/tippytipper/services/TipCalculatorServiceTest.java
+15
-0
No files found.
.idea/modules.xml
View file @
5d933077
...
...
@@ -3,7 +3,7 @@
<component
name=
"ProjectModuleManager"
>
<modules>
<module
fileurl=
"file://$PROJECT_DIR$/app/app.iml"
filepath=
"$PROJECT_DIR$/app/app.iml"
/>
<module
fileurl=
"file://$PROJECT_DIR$/
tippy_1.1.3.iml"
filepath=
"$PROJECT_DIR$/tippy_1.1.3
.iml"
/>
<module
fileurl=
"file://$PROJECT_DIR$/
sst-tippytipper.iml"
filepath=
"$PROJECT_DIR$/sst-tippytipper
.iml"
/>
</modules>
</component>
</project>
\ No newline at end of file
.idea/vcs.xml
0 → 100644
View file @
5d933077
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"$PROJECT_DIR$"
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
app/build.gradle
View file @
5d933077
...
...
@@ -24,4 +24,5 @@ android {
dependencies
{
implementation
files
(
'libs/FlurryAgent.jar'
)
testImplementation
'junit:junit:4.12'
}
app/src/test/java/net/mandaria/tippytipper/services/TipCalculatorServiceTest.java
0 → 100644
View file @
5d933077
package
net.mandaria.tippytipper.services
;
import
org.junit.Test
;
import
static
junit
.
framework
.
Assert
.
assertTrue
;
import
static
junit
.
framework
.
Assert
.
fail
;
public
class
TipCalculatorServiceTest
{
@Test
public
void
testShouldFail
()
{
TipCalculatorService
t
=
new
TipCalculatorService
();
fail
(
":-("
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment