-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.scala
77 lines (63 loc) · 2.83 KB
/
main.scala
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
+// create a function that returns a string literal
+// call the function from main
+ (void) testReturnStringLiteral
{
NSString *source = @"#include <stdio.h>\nchar *hello() { return \"Hello World!\\n\"; }\nint main() { printf(hello()); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}
+// create a function that returns a string literal
+// call the function from main
+ (void) testReturnStringLiteral
{
NSString *source = @"#include <stdio.h>\nchar *hello() { return \"Hello World!\\n\"; }\nint main() { printf(hello()); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}
+// create a function that returns a string literal
+// call the function from main
+ (void) testReturnStringLiteral
{
NSString *source = @"#include <stdio.h>\nchar *hello() { return \"Hello World!\\n\"; }\nint main() { printf(hello()); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}
+// create a function that returns a string literal
+// call the function from main
+ (void) testReturnStringLiteral
{
NSString *source = @"#include <stdio.h>\nchar *hello() { return \"Hello World!\\n\"; }\nint main() { printf(hello()); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}
+// create a function that returns a string literal
+// call the function from main
+// compile it
+// run it
+// check the output
+// delete the executable
+ (void) testHelloWorld
{
NSString *source = @"#include <stdio.h>\nint main() { printf(\"Hello World!\\n\"); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}
// create a program that uses a function from a library
+ (void) testLibrary
{
NSString *source = @"#include <stdio.h>\nint main() { printf(\"Hello World!\\n\"); return 0; }";
NSString *executable = @"a.out";
NSString *output = [self compileAndRun:source executable:executable];
STAssertEqualObjects(output, @"Hello World!\n", @"Hello World test failed");
[self deleteExecutable:executable];
}