An open API service indexing awesome lists of open source software.

https://github.com/thewillyhuman/willyos-java

willyOS for java developers
https://github.com/thewillyhuman/willyos-java

collections data data-structures java os structures

Last synced: 10 months ago
JSON representation

willyOS for java developers

Awesome Lists containing this project

README

          

# Welcome to willyOS !

[![](https://jitpack.io/v/ZenMaster91/willyOS-java.svg)](https://jitpack.io/#ZenMaster91/willyOS-java)
[![GitHub issues](https://img.shields.io/github/issues/ZenMaster91/willyOS-java.svg)](https://github.com/ZenMaster91/willyOS-java/issues)
[![GitHub forks](https://img.shields.io/github/forks/ZenMaster91/willyOS-java.svg)](https://github.com/ZenMaster91/willyOS-java/network)
[![GitHub stars](https://img.shields.io/github/stars/ZenMaster91/willyOS-java.svg)](https://github.com/ZenMaster91/willyOS-java/stargazers)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/ZenMaster91/willyOS-java/development/LICENSE)

This repository includes all code performed during the subjects of the University of Oviedo. Anyway, to give some structure it's presented as an API called willyOS. The structure of this API might be different from the structure followed during the courses because it refers more to the big picture of the degree than to the individual courses. Because of this reason the structure is the following:

```php
- willyOS
- SDK
- XXXKit
- ...
- Foundation
- ...

- test
- ... Same structure
```

> ### Note
>
> The tests that come with willyOS are written using the libary JUnit. After the installation remember that you have to import the `JUnit` at the beginning of your test class.
> ```java
> import org.junit.Test;
> ```