DataJPATest尝试加载所有内容

时间:2020-06-30 07:39:41

标签: spring-boot spring-boot-test

我有我的应用程序,包含很多组件。 我想测试我的查询,所以我用:

Pod::Spec.new do |s|
    s.name             = 'MyPrivatePod'
    s.version          = '0.1.6'
    s.summary          = 'MyPrivatePod is an SDK used for processing a heavy task in the project.'
    
    s.description      = "MyPrivatePod provides extensive features while doing private processing. This is private pod and desription is private to"
    
    s.homepage         = 'https://path/to/my/priavate/pod/git/_git/MyPrivatePodPodSpecs_iOS'
    s.license          = { :type => 'Private', :file => 'LICENSE' }
    s.author           = { 'asifhabib' => 'asif.habib11@gmail.com' }
    s.source           = { :git => 'https://path/to/my/priavate/pod/git/_git/MyPrivatePodPodSpecs_iOS', :tag => s.version.to_s }
    
    s.ios.deployment_target = '11.0'
    
    s.source_files = 'MyPrivatePod/Classes/**/*.{h,m,swift}'
    s.resources = 'MyPrivatePod/Classes/**/*.{storyboard,xib,xcassets}'
    
    s.resource_bundles = {
        'MyPrivatePod' => ['MyPrivatePod/Classes/**/*.{storyboard,xib,xcassets}']
    }
    s.info_plist = { 'CFBundleIdentifier' => 'com.cph.MyPrivatePod' }
    
    s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'com.cph.MyPrivatePod' }
    
    s.dependency 'MBProgressHUD', '~> 1.2.0'
    s.dependency 'Toast-Swift', '~> 5.0.1'
    s.dependency 'AFNetworking', '~> 2.3'
    
    s.swift_version = "4.2"
end

问题在于它还会尝试加载每个bean! 我想念什么?

0 个答案:

没有答案
相关问题