ここ http://www6.airnet.ne.jp/manyo/xml/schema/step46-2.html とか見てるんですけど
namespace の解釈の仕方がよくわからないので教えてほしいです

testA.xsd
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema targetNamespace="http://test/nsA" xmlns:xsd="http://www.w3.org/2001/XMLSchema">


testB.xsd
<?xml version="1.0" encoding="UTF-8" ?>
<xsd:schema targetNamespace="http://test/nsB" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <import namespace="http://test/nsC" schemaLocation="testA.xsd"/>


として testB.xsd が testA.xsd をインポートすると、targetNamespace のネームスペースがhttp://test/nsCに置換されたものと解釈すればいいのか
それとも、targetNamespace 等が設定されていない時に http://test/nsC が適用されると考えればよいのか、もっと別の解釈なのかと
正しい所はどこなんでしょうか?