Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
ButtonPusher
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Button Pusher
ButtonPusher
Commits
692c0e7c
Commit
692c0e7c
authored
Feb 10, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write Tests for class "MotionNoteMaker"
parent
30662082
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
165 additions
and
49 deletions
+165
-49
ButtonNoteMakerTests.cs
Assets/Editor/ButtonNoteMakerTests.cs
+4
-2
DistItvExtractorTests.cs
Assets/Editor/DistItvExtractorTests.cs
+2
-2
MotionNoteMakerTests.cs
Assets/Editor/MotionNoteMakerTests.cs
+119
-0
MotionNoteMakerTests.cs.meta
Assets/Editor/MotionNoteMakerTests.cs.meta
+13
-0
Clap.cs
Assets/MotionNotes/Clap.cs
+2
-4
Guard.cs
Assets/MotionNotes/Guard.cs
+2
-4
HandDown.cs
Assets/MotionNotes/HandDown.cs
+2
-4
HandUp.cs
Assets/MotionNotes/HandUp.cs
+2
-4
Headphone.cs
Assets/MotionNotes/Headphone.cs
+2
-3
Jesus.cs
Assets/MotionNotes/Jesus.cs
+2
-4
Jump.cs
Assets/MotionNotes/Jump.cs
+2
-4
OnTheTable.cs
Assets/MotionNotes/OnTheTable.cs
+2
-4
PushUp.cs
Assets/MotionNotes/PushUp.cs
+2
-4
MotionNote.cs
Assets/Script/MotionNote.cs
+3
-5
ButtonNoteMaker.cs
Assets/TrackAnalysis/ButtonNoteMaker.cs
+1
-1
MotionNoteMaker.cs
Assets/TrackAnalysis/MotionNoteMaker.cs
+5
-4
No files found.
Assets/Editor/ButtonNoteMakerTests.cs
View file @
692c0e7c
...
...
@@ -64,7 +64,8 @@ class ButtonNoteMakerTests
var
note2
=
obj
.
Make
(
"AA"
,
"LBT"
,
2
);
var
expected
=
true
;
var
actual
=
(
note1
.
Type
==
NoteType
.
SBT
&&
var
actual
=
(
tmp
==
null
&&
note1
.
Type
==
NoteType
.
SBT
&&
note2
.
Type
==
NoteType
.
LBT
);
Assert
.
AreEqual
(
expected
,
actual
,
"The short next long note should be made correctly"
);
...
...
@@ -79,7 +80,8 @@ class ButtonNoteMakerTests
var
note2
=
obj
.
Make
(
"AA"
,
"SBT"
,
2
);
var
expected
=
true
;
var
actual
=
(
note1
.
Type
==
NoteType
.
LBT
&&
var
actual
=
(
tmp
==
null
&&
note1
.
Type
==
NoteType
.
LBT
&&
note2
.
Type
==
NoteType
.
SBT
);
Assert
.
AreEqual
(
expected
,
actual
,
"The long next short note should be made correctly"
);
...
...
Assets/Editor/DistItvExtractorTests.cs
View file @
692c0e7c
...
...
@@ -10,8 +10,8 @@ public class DistItvExtractorTests
{
var
obj
=
new
DistItvExtractor
(
0.0f
);
var
expected
=
null
as
float
?
;
var
actual
=
obj
.
DistHandBaseSpineShoulder
;
var
expected
=
true
;
var
actual
=
(
obj
.
DistHandBaseSpineShoulder
==
null
)
;
Assert
.
AreEqual
(
expected
,
actual
,
"DistHandBaseSpineShoulder should be null value when constructed"
);
}
...
...
Assets/Editor/MotionNoteMakerTests.cs
0 → 100644
View file @
692c0e7c
using
TrackAnalysis
;
using
NUnit.Framework
;
class
MotionNoteMakerTests
{
[
Test
]
public
void
Made_Note_Should_Null_When_Invalid_Note_Type
()
{
var
obj
=
new
MotionNoteMaker
();
var
note
=
obj
.
Make
(
"CP"
,
"SBT"
,
0
);
var
expected
=
true
;
var
actual
=
(
note
==
null
);
Assert
.
AreEqual
(
expected
,
actual
,
"Made note should be null value when invalid note type"
);
}
[
Test
]
public
void
Made_Note_Should_Null_When_Invalid_Code
()
{
var
obj
=
new
MotionNoteMaker
();
var
note
=
obj
.
Make
(
"AA"
,
"SMO"
,
0
);
var
expected
=
true
;
var
actual
=
(
note
==
null
);
Assert
.
AreEqual
(
expected
,
actual
,
"Made note should be null value when invalid code"
);
}
[
Test
]
public
void
Made_Note_Should_Short_When_Note_Type_SMO_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
note
=
obj
.
Make
(
"CP"
,
"SMO"
,
0
);
var
expected
=
true
;
var
actual
=
(
note
.
Type
==
NoteType
.
SMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"Made note should be short when note type is SMO and code is CP"
);
}
[
Test
]
public
void
Made_Note_Should_Long_When_Note_Type_LMO_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
tmp
=
obj
.
Make
(
"CP"
,
"LMO"
,
0
);
var
note
=
obj
.
Make
(
"CP"
,
"LMO"
,
1
);
var
expected
=
true
;
var
actual
=
(
tmp
==
null
&&
note
.
Type
==
NoteType
.
LMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"Made note should be long when note type is LMO and code is CP"
);
}
[
Test
]
public
void
Short_Short_Should_Made_Correctly_When_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
note1
=
obj
.
Make
(
"CP"
,
"SMO"
,
0
);
var
note2
=
obj
.
Make
(
"CP"
,
"SMO"
,
1
);
var
expected
=
true
;
var
actual
=
(
note1
.
Type
==
NoteType
.
SMO
&&
note2
.
Type
==
NoteType
.
SMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"2 short notes should be made correctly when code is cp"
);
}
[
Test
]
public
void
Short_Long_Should_Made_Correctly_When_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
note1
=
obj
.
Make
(
"CP"
,
"SMO"
,
0
);
var
tmp
=
obj
.
Make
(
"CP"
,
"LMO"
,
1
);
var
note2
=
obj
.
Make
(
"CP"
,
"LMO"
,
2
);
var
expected
=
true
;
var
actual
=
(
tmp
==
null
&&
note1
.
Type
==
NoteType
.
SMO
&&
note2
.
Type
==
NoteType
.
LMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"The short next long note should be made correctly when code is cp"
);
}
[
Test
]
public
void
Long_Short_Should_Made_Correctly_When_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
tmp
=
obj
.
Make
(
"CP"
,
"LMO"
,
0
);
var
note1
=
obj
.
Make
(
"CP"
,
"LMO"
,
1
);
var
note2
=
obj
.
Make
(
"CP"
,
"SMO"
,
2
);
var
expected
=
true
;
var
actual
=
(
tmp
==
null
&&
note1
.
Type
==
NoteType
.
LMO
&&
note2
.
Type
==
NoteType
.
SMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"The long next short note should be made correctly when code is cp"
);
}
[
Test
]
public
void
Long_Long_Should_Made_Correctly_When_Code_CP
()
{
var
obj
=
new
MotionNoteMaker
();
var
tmp1
=
obj
.
Make
(
"CP"
,
"LMO"
,
0
);
var
note1
=
obj
.
Make
(
"CP"
,
"LMO"
,
1
);
var
tmp2
=
obj
.
Make
(
"CP"
,
"LMO"
,
2
);
var
note2
=
obj
.
Make
(
"CP"
,
"LMO"
,
3
);
var
expected
=
true
;
var
actual
=
(
tmp1
==
null
&&
tmp2
==
null
&&
note1
.
Type
==
NoteType
.
LMO
&&
note2
.
Type
==
NoteType
.
LMO
);
Assert
.
AreEqual
(
expected
,
actual
,
"2 long notes should be made correctly when code is cp"
);
}
}
\ No newline at end of file
Assets/Editor/MotionNoteMakerTests.cs.meta
0 → 100644
View file @
692c0e7c
fileFormatVersion: 2
guid: 9b0d8272d7d2f2c4d9c885ad3e7e310c
timeCreated: 1518217518
licenseType: Free
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/MotionNotes/Clap.cs
View file @
692c0e7c
...
...
@@ -11,11 +11,9 @@ public class Clap : MotionNote
}
}
public
Clap
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
Clap
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
MotionName
=
"Clap"
;
}
public
Clap
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/Guard.cs
View file @
692c0e7c
...
...
@@ -11,7 +11,8 @@ public class Guard : MotionNote
}
}
public
Guard
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
Guard
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
switch
(
key
)
{
...
...
@@ -29,7 +30,4 @@ public class Guard : MotionNote
break
;
}
}
public
Guard
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/HandDown.cs
View file @
692c0e7c
...
...
@@ -11,7 +11,8 @@ public class HandDown : MotionNote
}
}
public
HandDown
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
HandDown
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
switch
(
key
)
{
...
...
@@ -29,7 +30,4 @@ public class HandDown : MotionNote
break
;
}
}
public
HandDown
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/HandUp.cs
View file @
692c0e7c
...
...
@@ -11,7 +11,8 @@ public class HandUp : MotionNote
}
}
public
HandUp
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
HandUp
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
switch
(
key
)
{
...
...
@@ -29,7 +30,4 @@ public class HandUp : MotionNote
break
;
}
}
public
HandUp
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/Headphone.cs
View file @
692c0e7c
...
...
@@ -11,7 +11,8 @@ public class Headphone : MotionNote
}
}
public
Headphone
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
Headphone
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
switch
(
key
)
{
...
...
@@ -29,6 +30,4 @@ public class Headphone : MotionNote
break
;
}
}
public
Headphone
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/Jesus.cs
View file @
692c0e7c
...
...
@@ -11,11 +11,9 @@ public class Jesus : MotionNote
}
}
public
Jesus
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
Jesus
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
MotionName
=
"Jesus"
;
}
public
Jesus
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/Jump.cs
View file @
692c0e7c
...
...
@@ -11,11 +11,9 @@ public class Jump : MotionNote
}
}
public
Jump
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
Jump
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
MotionName
=
"Jump"
;
}
public
Jump
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/OnTheTable.cs
View file @
692c0e7c
...
...
@@ -11,11 +11,9 @@ public class OnTheTable : MotionNote
}
}
public
OnTheTable
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
OnTheTable
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
MotionName
=
"OnTheTable"
;
}
public
OnTheTable
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/MotionNotes/PushUp.cs
View file @
692c0e7c
...
...
@@ -11,7 +11,8 @@ public class PushUp : MotionNote
}
}
public
PushUp
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
public
PushUp
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
switch
(
key
)
{
...
...
@@ -41,7 +42,4 @@ public class PushUp : MotionNote
break
;
}
}
public
PushUp
(
float
start
,
float
end
=
0f
)
:
base
(
start
,
end
)
{
}
}
Assets/Script/MotionNote.cs
View file @
692c0e7c
...
...
@@ -7,11 +7,9 @@ using UnityEngine;
public
abstract
class
MotionNote
:
Note
{
public
abstract
Sprite
Image
{
get
;
}
public
MotionNote
(
float
start
,
float
end
=
0f
)
:
base
(
start
==
end
?
NoteType
.
SMO
:
NoteType
.
LMO
,
start
,
end
)
{
}
public
MotionNote
(
string
key
,
float
start
,
float
end
=
0f
)
:
this
(
start
,
end
)
{
}
public
MotionNote
(
string
key
,
string
type
,
float
start
,
float
end
=
0f
)
:
base
(
key
,
type
,
start
,
end
)
{
}
public
MotionSampleDisplay
MotionSampleDisplay
{
get
;
set
;
}
...
...
Assets/TrackAnalysis/ButtonNoteMaker.cs
View file @
692c0e7c
...
...
@@ -18,7 +18,7 @@
string
type
,
float
timing
)
{
return
new
Note
(
code
,
type
,
timing
,
0
);
return
new
Note
(
code
,
type
,
timing
);
}
override
protected
...
...
Assets/TrackAnalysis/MotionNoteMaker.cs
View file @
692c0e7c
using
System
;
using
System.Reflection
;
namespace
TrackAnalysis
{
...
...
@@ -21,8 +22,8 @@ namespace TrackAnalysis
string
type
,
float
timing
)
{
return
(
Motion
Note
)
Activator
.
CreateInstance
(
MotionNote
.
keymap
[
code
],
code
,
timing
,
0
);
return
(
Note
)
Activator
.
CreateInstance
(
MotionNote
.
keymap
[
code
],
code
,
t
ype
,
t
iming
,
0
);
}
override
protected
...
...
@@ -35,8 +36,8 @@ namespace TrackAnalysis
float
start
=
Timing
.
Value
;
Timing
=
null
;
return
(
Motion
Note
)
Activator
.
CreateInstance
(
MotionNote
.
keymap
[
type
],
cod
e
,
start
,
timing
);
return
(
Note
)
Activator
.
CreateInstance
(
MotionNote
.
keymap
[
code
],
code
,
typ
e
,
start
,
timing
);
}
}
}
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