From d3b39e1e49cdca08c6f43e506267148208ac686b Mon Sep 17 00:00:00 2001
From: Tue Herlau <tuhe@dtu.dk>
Date: Thu, 26 Aug 2021 12:42:14 +0200
Subject: [PATCH] Reorg for new version

---
 README.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 35d7639..410439e 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,4 @@
 # Unitgrade-private
-
-
 Unitgrade is an automatic report and exam evaluation framework that enables instructors to offer automatically evaluated programming assignments. 
  Unitgrade is build on pythons `unittest` framework so that the tests can be specified in a familiar syntax and will integrate with any modern IDE. What it offers beyond `unittest` is the ability to collect tests in reports (for automatic evaluation) and an easy and 100% safe mechanism for verifying the students results and creating additional, hidden tests. A powerful cache system allows instructors to automatically create test-answers based on a working solution. 
 
@@ -13,9 +11,10 @@ Unitgrade is an automatic report and exam evaluation framework that enables inst
     - Instructors can automatically verify the students solution using a Docker VM and run hidden tests
  - Tests are quick to run and will integrate with your IDE
 
-** Note: This is the development version of unitgrade. If you are a student, please see http://gitlab.compute.dtu.dk/tuhe/unitgrade. **
+**Note: This is the development version of unitgrade. If you are a student, please see http://gitlab.compute.dtu.dk/tuhe/unitgrade.**
 
 # Using unitgrade
+The examples can be found in the `/examples/` directory: https://gitlab.compute.dtu.dk/tuhe/unitgrade_private/examples
 
 ## A simple example
 Unitgrade makes the following assumptions:
@@ -280,4 +279,6 @@ if __name__ == "__main__":
 
 These steps compile a Docker image (you can easily add whatever packages you need) and runs **our** `project3_complete_grade.py` script on the **students** source code (as taken from the token file). 
 
-The last lines load the result and compare the score -- in this case both will return 0 points.
\ No newline at end of file
+The last lines load the result and compare the score -- in this case both will return 0 points, and any dissimilarity in the results should be immediate cause for concern. 
+
+ - Docker prevents students from doing mailicious things to your computer and allows the results to be reproducible by TAs. 
-- 
GitLab