示例#1
0
        public async Task GetBlueprint_ReturnBlueprint()
        {
            var blueprint = await utilities.GetBlueprint(BlueprintString).ConfigureAwait(false);

            var result = testee.GetBlueprint(blueprint);

            result.ShouldNotBeNull();
        }
        public async Task GetBlueprint_ReturnBlueprintToJson()
        {
            var blueprint = await testee.GetBlueprint(BlueprintString).ConfigureAwait(false);

            blueprint.ShouldNotBeNull();
        }