A check50 extension for java
Project description
check50_java
This is an extension for the CS50 automarker check50 that provides convenient wrappers around check50.run for directly compiling and interpreting Java source/byte code.
See also check50_junit and check50_checkstyle for related utilities that make writing check50 checks for java less painful.
Example Usage
All examples below assume that you're importing check50 and check50_java.
Compile Java source code
@check50.check()
def someclass_compiles():
check50_java.compile("SomeClass.java"
classpaths=['your/classpaths',
'relative/to/the',
'pset/directory.jar']
)
The classpaths argument defaults to None ~ '.'.
Check that a class is executable (has well-formed main method)
@check50.check(someclass_compiles)
def someclass_main_exists():
"""SomeClass is application class"""
check50_java.checks.is_application_class("SomeClass")
Execute an application class and check that its output is as expected
@check50.check(someclass_main_exists)
def someclass_main_output():
"""SomeClass.main() output"""
expected = "X"
actual = check50_java.run("SomeClass").stdout()
help_msg = "did you introduce training newline or whitespace characters?"
if actual != expected:
raise check50.Mismatch(expected, actual, help=help_msg)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file check50_java-0.5.tar.gz.
File metadata
- Download URL: check50_java-0.5.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
966796d8ba3fa9ca0c79d9c726f360fb6da950510b1777f9dbab578034ff662d
|
|
| MD5 |
ff64b6548d3d026a9a112de5e81bae0a
|
|
| BLAKE2b-256 |
674a911ef95dfb1fe8af7fc80fc2fbfe0e6dda8737f4e2f0ab168a6c277e2997
|
File details
Details for the file check50_java-0.5-py3-none-any.whl.
File metadata
- Download URL: check50_java-0.5-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6881c96dba6335571ecf1a0057e38ab97d191393bccc52a280a2bdcac50b6885
|
|
| MD5 |
6a92150eb07a269676a1a20c68bcfb38
|
|
| BLAKE2b-256 |
2d4cc7d59d9fec0b76b66c1f1e685d2575ccd1fd03fa2b2b37535315eb7f5038
|