-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssembleTests.cpp
58 lines (50 loc) · 1.52 KB
/
AssembleTests.cpp
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
#include "stdafx.h"
#pragma comment(lib, "spasm.lib")
#include "..\SPASM\pass_one.h"
#include "..\SPASM\pass_two.h"
#include "..\SPASM\parser.h"
#include "..\SPASM\spasm.h"
#include "..\SPASM\errors.h"
#include "..\SPASM\storage.h"
using namespace System;
using namespace System::Text;
using namespace System::Collections::Generic;
using namespace Microsoft::VisualStudio::TestTools::UnitTesting;
namespace SPASMTestsVS2008
{
[TestClass]
public ref class AssembleTests
{
public:
[TestMethod]
void directivemacro()
{
BYTE Results[] = {'h', 'e', 'l', 'l', 'o', 0x00};
output_filename = strdup("test.bin");
mode = MODE_NORMAL;
init_storage();
output_contents = (unsigned char *) malloc(1000);
curr_input_file = strdup("..\\..\\..\\..\\..\\Tests\\SPASMTests\\directivemacro.z80");
int result = run_assembly();
for (int i = 0; i < sizeof(Results); i++)
{
Assert::AreEqual(Results[i], output_contents[i], gcnew String("Unequal at index: ") + i);
}
}
[TestMethod]
void echofill()
{
BYTE Results[] = {'A', 'Z', 'Z', 'Z', 'Z'};
output_filename = strdup("test.bin");
mode = MODE_NORMAL;
init_storage();
output_contents = (unsigned char *) malloc(1000);
curr_input_file = strdup("..\\..\\..\\..\\..\\Tests\\SPASMTests\\echofill.z80");
int result = run_assembly();
for (int i = 0; i < sizeof(Results); i++)
{
Assert::AreEqual(Results[i], output_contents[i], gcnew String("Unequal at index: ") + i);
}
}
};
}