-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rkt
30 lines (24 loc) · 997 Bytes
/
main.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#|----------------------------------------------------------------------------------------------------------------
@file main.rkt
@version 0.1
@date 22/08/2019
@authors angelortizv, isolis2000, jesquivel48
@brief Wazitico corresponds to Project I for the course of Languages, Compilers and Interpreters. (CE3104),
Languages module. It aims to develop a mixed graph that simulates the famous Waze application.
----------------------------------------------------------------------------------------------------------------|#
#lang racket
(require "app/interface.rkt"
"test/pathfind/finder_tests.rkt"
"test/interface/interface_tests.rkt"
)
(module+ test
;;Tests to be run
(display "------- WAZITICO : APPLICATION TESTS -------\n\n")
(run_finderTest)
(run_interfaceTest)
(display "\n------- WAZITICO : APPLICATION TESTS -------\n")
)
(module+ main
;;Main entry point, executed when run with the `racket executable`.
(runner #t)
)