A blank base for heavier AWT components that would be needed by applets in the future...
[SquirrelJME.git] / nanocoat / tests / testClassParseConstantPool.c
blob49a6f7569010e525308539f0985f9354060a8fe2
1 /* -*- Mode: C; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // -------------------------------------------------------------------------*/
10 #include <string.h>
12 #include "mock.h"
13 #include "proto.h"
14 #include "test.h"
15 #include "unit.h"
17 /**
18 * Tests parsing of class constant pool entries.
20 * @since 2024/01/01
22 SJME_TEST_DECLARE(testClassParseConstantPool)
24 sjme_classBuilder builder;
26 memset(&builder, 0, sizeof(builder));
27 if (sjme_error_is(sjme_classBuilder_build(test->pool,
28 &builder, SJME_JNI_FALSE, test)))
29 return sjme_unit_fail(test, "Failed to initialize class builder.");
31 sjme_todo("Implement %s", __func__);
32 return SJME_TEST_RESULT_FAIL;