Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
2
2024assignment1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cosc250-2023
2024assignment1
Compare revisions
3590bce5163133ac525cb5a486d72de29ab50738 to 51ca5219126f22bdbb8e97590bfe1566f016f8c8
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cosc250-2023/2024assignment1
Select target project
No results found
51ca5219126f22bdbb8e97590bfe1566f016f8c8
Select Git revision
Loading items
Swap
Target
cosc250-2023/2024assignment1
Select target project
cosc250-2023/2024assignment1
1 result
3590bce5163133ac525cb5a486d72de29ab50738
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Update munit version
· 78adc352
William Billingsley
authored
3 months ago
78adc352
Update README.md
· 51ca5219
William Billingsley
authored
3 months ago
51ca5219
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+14
-0
14 additions, 0 deletions
README.md
src/test/scala/cosc250/assignmentOne/Challenge1Suite.scala
+1
-1
1 addition, 1 deletion
src/test/scala/cosc250/assignmentOne/Challenge1Suite.scala
with
15 additions
and
1 deletion
README.md
View file @
51ca5219
...
...
@@ -14,9 +14,23 @@ You can execute the tests with
scala-cli
test
.
```
or
```
sh
scala
test
.
```
depending on how you have Scala(-CLI) instsalled
To test only a single challenge, say Challenge1
```
sh
scala-cli
test
.
--test-only
'*.Challenge1Suite'
```
or
```
sh
scala
test
.
--test-only
'*.Challenge1Suite'
```
This diff is collapsed.
Click to expand it.
src/test/scala/cosc250/assignmentOne/Challenge1Suite.scala
View file @
51ca5219
// Don't delete the comment below -- it is a Scala-CLI "using" directive to instruct it to use the munit test framework
//> using test.dep org.scalameta::munit::
0.7.29
//> using test.dep org.scalameta::munit::
1.1.0
package
cosc250.assignmentOne
...
...
This diff is collapsed.
Click to expand it.