mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-10 05:26:56 +00:00
75 lines
1.6 KiB
TOML
75 lines
1.6 KiB
TOML
includes = ["string"]
|
|
[cases]
|
|
[cases.empty]
|
|
param_types = ["std::string&"]
|
|
setup = "return {};"
|
|
expect_json = '''
|
|
[
|
|
{
|
|
"typeName": "string",
|
|
"isTypedef": true,
|
|
"staticSize": 32,
|
|
"dynamicSize": 0,
|
|
"exclusiveSize": 0,
|
|
"members": [
|
|
{
|
|
"staticSize": 32,
|
|
"dynamicSize": 0,
|
|
"exclusiveSize": 32,
|
|
"length": 0,
|
|
"capacity": 15,
|
|
"elementStaticSize": 1
|
|
}
|
|
]
|
|
}
|
|
]
|
|
'''
|
|
[cases.sso]
|
|
param_types = ["std::string&"]
|
|
setup = 'return {"012345"};'
|
|
expect_json = '''
|
|
[
|
|
{
|
|
"typeName": "string",
|
|
"isTypedef": true,
|
|
"staticSize": 32,
|
|
"dynamicSize": 0,
|
|
"exclusiveSize": 0,
|
|
"members": [
|
|
{
|
|
"staticSize": 32,
|
|
"dynamicSize": 0,
|
|
"exclusiveSize": 32,
|
|
"length": 6,
|
|
"capacity": 15,
|
|
"elementStaticSize": 1
|
|
}
|
|
]
|
|
}
|
|
]
|
|
'''
|
|
[cases.heap_allocated]
|
|
param_types = ["std::string&"]
|
|
setup = 'return {"abcdefghijklmnopqrstuvwxzy"};'
|
|
expect_json = '''
|
|
[
|
|
{
|
|
"typeName": "string",
|
|
"isTypedef": true,
|
|
"staticSize": 32,
|
|
"dynamicSize": 26,
|
|
"exclusiveSize": 0,
|
|
"members": [
|
|
{
|
|
"staticSize": 32,
|
|
"dynamicSize": 26,
|
|
"exclusiveSize": 58,
|
|
"length": 26,
|
|
"capacity": 26,
|
|
"elementStaticSize": 1
|
|
}
|
|
]
|
|
}
|
|
]
|
|
'''
|